Latest TCS Aptitude Question SOLUTION: Predict the output of following code: main() { int a,x=2,3,4,5; // Error because list is not within ( ) a=1,2,3,4,5; printf(“%d%d”,x,a); } 1. Error 2. 5,1 3. 2,1 4. 5,5