Latest TCS Aptitude Question SOLUTION: Predict the output of following code: main() { int a=10,x; x= a-- + ++a; printf(“%d”,x); } 1. 19 ​ 2. 20​ 3. 22 4. 23