C - Control Statements - Discussion

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

 



Q.

#include

void main()
{
int num=10;
if(num)
printf("If Executed");
else
printf("Else Executed");
}

A. If Executed B. Else Executed
C. Compile Error : If Statement must have Condition D. Run-Time Error

Answer: Option A
Explaination:

 


No Explanation



Discussion

Your Comments Goes here...
NameDiscussion