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 is page thrashing?
Implement bit Array in C.
What's the difference between constant char *p and char * constant p?
In c language can we compile a program without main() function?
What is a MAC Address?
Is c call by value?
Combinations of fibanocci prime series
Is that possible to add pointers to each other?
Write a code to remove duplicates in a string.
Compare and contrast compilers from interpreters.
Explain spaghetti programming?
What are the advantages of external class?
Explain what is the difference between far and near ?
a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above
What is a header file?