C Programming
mediumQ1
What is the output of: #include <stdio.h> int main() { int x = 5, y = 0; if (x || y++) printf("%d", y); return 0; }
1 / 15
What is the output of: #include <stdio.h> int main() { int x = 5, y = 0; if (x || y++) printf("%d", y); return 0; }