Latest TCS Aptitude Question SOLUTION: Predict the output of following code: main() { int a=b=c=d=10; //​ error: ‘b’ , ‘c’, ‘d’ undeclared printf(“%d,%d,%d,%d”,a,b,c,d); } 1. Error 2. 10,10,10,10 3. GV