Question: 21
(Choose 1 answer)
What is the output when the sample code below is executed?
#include <stdio.h>
int main()
{
}
int n = 50, m = 60;
if (n> 50)
if (m> 50)
printf("True");
else
printf("False");
return 0;
A. No the output
B. True
C. False
D. Compile time error