What is output of the program?

#include <stdio.h>
#include <conio.h>
 
void main()
{
    int i = 3;
    i = i++;
    printf("%d", i);
    getch();
}

 

Suy nghĩ trả lời câu hỏi trước khi xem đáp án

ATNETWORK
ZUNIA9