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