C Question Of Day


Home
Guess the output of the following program.
			
			#include < stdio.h >
			int main()
			{
			  int i=5,j=6;
			  j=i++ + ++i;
			  printf("%d %d",i,j);
			  return 0;
			}