if a=8 , find: a-= ++a + a++ + a++; find a
Answers
Answered by
0
Answer:
Output of a++ + ++a + a++
What is the answer of a++ + ++a + a++
int a=5;
c = a++ + ++a + a++;
//compiler produces the answer 28!!!
//How
Answered by
0
Answer:
I think the ans is
a=24..........
Similar questions