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 / bipin chandra sai.s
ans is d,bcoz d is only the loop statement in the option
| Is This Answer Correct ? | 0 Yes | 4 No |
Post New Answer View All Answers
What is a null pointer in c?
what is ur strangth & weekness
Write a code to achieve inter processor communication (mutual exclusion implementation pseudo code)?
Explain the array representation of a binary tree in C.
Is it valid to address one element beyond the end of an array?
What are the application of void data type in c?
Is sizeof a keyword in c?
What is difference between array and structure in c?
Explain how do you declare an array that will hold more than 64kb of data?
What are header files why are they important?
#include
What are 'near' and 'far' pointers?
How do we make a global variable accessible across files? Explain the extern keyword?
What are the main characteristics of c language describe the structure of ac program?
Explain what are multidimensional arrays?