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); }
What will be output of the operations below?
July 7, 2021 in C and CPP
July 7, 2021 in C and CPP
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); }