C - Control Statements - Discussion

You Are Here :: Home > C > Control Statements - Discussion

 



Q.

#include

void main()
{
if(-100)
printf("negative number");
else
printf("Positive Number");
}

A. Positive Number B. negative number
C. Compile Error : Negative number not allowed D. Random Behavior

Answer: Option B
Explaination:

 


No Explanation



Discussion

Your Comments Goes here...
NameDiscussion