C - Control Statements - Discussion

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

 



Q.

#include

void main(){
int a=5,b=10,c=1;
if(a&&b>c){
printf("shalu");
}
else{
break;
}
}
Choose all that apply:

A. shalu B. It will print nothing
C. Run time error D. Compilation error

Answer: Option D
Explaination:

 


No Explanation



Discussion

Your Comments Goes here...
NameDiscussion