+ 2
Why the output is " how "?
# include<stdio.h> int x; void main() { if (x) printf("hi"); else printf("how "); }
4 Antworten
+ 2
Thank you swim.
+ 1
But after making x local variable the output is coming same.
# include<stdio.h> int x; void main() { if (x) printf("hi"); else printf("how "); }