What will be output of the operations below?

a) What will be output of the operations below?
main()
{ int a=10,b=25;
a=b++ + a++;
b= ++b + ++a;
printf(“%d %d \n”,a,b); }


Leave a Reply