Latest TCS Aptitude Question SOLUTION: Predict the output of following code: main() { int a=10,x=20;a=a++ + 10; // a = 10+10 first a is increment to 11 but overwritten by 20 x=x++ + ++a; // x = 20 + 21 a is incremented