A
Q. What is the output of this code?
Code:
#include <stdio.h>
int main() {
int x = 0;
if (x)
printf("True");
else
printf("False");
return 0;
}
int main() {
int x = 0;
if (x)
printf("True");
else
printf("False");
return 0;
}
- Correct Answer - Option(B)
- Views: 14
- Filed under category C Programming
- Hashtags:
Discusssion
Login to discuss.