Computer Science, asked by LoveDose01, 5 months ago

What is the output of this C code?

#include
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

Answers

Answered by pratyush15899
6

Answer:

ootion (C)No Output will be printed

Similar questions