Answer the Question
What will be the output of the program
int a=4,b;
b=a++ + ++a;
printf(“%d,%d,%d,%d”,b,a++,a,++a);
By :
sanoj kumar On :
07-Feb-2012 Answers :
3
Report Abuse
Previous Answers
10,6,7,8
On :
09-Feb-2012 Accept Count
:
1
10,7,7,7
On :
07-Feb-2012 Accept Count
:
1
10,6,7,8
On :
07-Feb-2012 Accept Count
:
1