A
Q. Output is:
Code:
#include <stdio.h>
void main() {
int x = 1, y = 0, z = 5;
int a = x && y && z++;
printf(“%d”, a);
}
void main() {
int x = 1, y = 0, z = 5;
int a = x && y && z++;
printf(“%d”, a);
}
- Correct Answer - Option(B)
- Views: 24
- Filed under category C Programming
- Hashtags:
Discusssion
Login to discuss.