Latest TCS Aptitude Question SOLUTION: Predict the output of following code: main() { int x,a=10; x=9*5+​ 7/3​ -6+a; ​ //45+2-6+10 = 51 ​ // 7/3 =2 int division printf(“%d”,x); } 1. 51 2. 51.5 3. 31 4. None