Predict
the output:
int a=6,b=5,c;
c=(a++%b++)*a+ ++a*++b;
Answers
Answered by
7
Explanation:
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
Asked by: crackboy
Member Since Feb-2008
Asked on: Feb 9th, 2008
Similar questions