+ 1
Can anyone explain the output of this code?
int main() { int i=5; if(i==3,4) printf("Hi"); else printf("No Hi"); return 0; } Output : Hi
5 Answers
0
~ swim ~ Thanks a lot, I understand now
int main() { int i=5; if(i==3,4) printf("Hi"); else printf("No Hi"); return 0; } Output : Hi