Computer Science, asked by santhoshvarma3736, 1 year ago

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 5U8H0J1T
1
8,10,10 will be the answer
Similar questions