C - Control Statements - Discussion

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

 



Q.

void main(){

int i;
clrscr();
for(i=0;i<=4;i++){
printf("%d",i);
break;
printf("Label 1");
}
printf("Label 2");
getch();
}

A. 0Label2 B. 1Label2
C. 2Label2 D. 3Label2

Answer: Option A
Explaination:

 


No Explanation



Discussion

Your Comments Goes here...
NameDiscussion