#include #include void main() { int a=10,b=20; printf("%d %d"); getch(); } the output is 20 10. How it is possible?
#include #include void main() { int a=10,b=20; printf("%d %d"); getch(); } the output is 20 10. How it is possible?