12345678910



Question 1: What will be the output of the program?

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

1. 3
2. 4
3. 5
4. 6