Latest TCS Aptitude Question SOLUTION: Predict the output of following code: main() { int a=100,b=300; if(a>50) // No braces, so only one immediate statement is part of if a=200​ ; b=400; printf(“%d”,b); } 1. 400