Question:What will be output when you will execute following c code?
#include<stdio.h> void main(){ int a=5,b=10,c=1; if(a&&b>c){ printf("cquestionbank"); } else{ break; } }Choose all that apply:
A cquestionbank
B It will print nothing
C Run time error
D Compilation error
E None
+ AnswerD
+ Explanation
+ Report