Examveda

What is the output of this C code?
#include <stdio.h>
main()
{
    int n = 0, m = 0;
    if (n > 0)
        if (m > 0)
            printf("True");
    else 
        printf("False");
}

A. True

B. False

C. No Output will be printed

D. Run Time Error

Answer: Option C


This Question Belongs to C Program >> C Miscellaneous

Join The Discussion

Related Questions on C Miscellaneous