which of the following go out of the loopo if expn 2
becoming false
a.while(expn 1){...if(expn 2)continue;}
b.while(!expn 1){if(expn 2)continue;...}
c.do{..if(expn 1)continue;..}while(expn 2);
d.while(!expn 2){if(expn 1)continue;..}
Answer Posted / jai
c) Since expn2 becoming false will terminate do-while loop.
| Is This Answer Correct ? | 10 Yes | 0 No |
Post New Answer View All Answers
What are multidimensional arrays?
How do you redirect a standard stream?
`write a program to display the recomended action depends on a color of trafic light using nested if statments
What is ctrl c called?
Is c easier than java?
What are the different categories of functions in c?
Can we add pointers together?
Can a file other than a .h file be included with #include?
Why ca not I do something like this?
What is binary tree in c?
List a few unconditional control statement in c.
Explain the meaning of keyword 'extern' in a function declaration.
What is c mainly used for?
What is volatile c?
How can I call fortran?