Latest TCS Aptitude Question SOLUTION: What is the output of: #include int main() { int x=40; { int x=20; printf("%d",x); } printf("%d",x); return 0; }