Latest TCS Aptitude Question SOLUTION: Predict the output of following code: main() { int i=10; printf(“%d,%d”,++i,++i); } 1. 11,12 2. 12,11 3. 10,11 4. 11,10