Latest C Aptitude Question SOLUTION: void fun() { // what should be the logic here to print x=20 instead of x=10 in the main function? } void main() { int x=20; fun(); x=10; printf("%d",x); getch(); }