What will be result of the execution of program that is given below?
a =7;
b = ++a+5;
c = b--=10;
printf("%d, %d, %d\n", a, b, c);
Answers
Answered by
1
8,10,10 will be the answer
Similar questions