C - Control Statements - Discussion

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

 



Q.

What will be output when you will execute following c code?

#include
void main(){
int m=5,n=10,q=20;
if(q/n*m)
printf("shalini");
else
printf(" shalu");
printf("deepu");
}
Choose all that apply:

A. shalini B. shalu deepu
C. Run time error D. None of the above

Answer: Option D
Explaination:

 


No Explanation



Discussion

Your Comments Goes here...
NameDiscussion