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;..}
Answers were Sorted based on User's Feedback
Answer / jai
c) Since expn2 becoming false will terminate do-while loop.
| Is This Answer Correct ? | 10 Yes | 0 No |
Answer / 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 |
IS STRUCTURES CAN BE USED WITHIN AN ARRAY?
What is signed and unsigned?
What is array in C
1.Why do you call C is middle level language? 2.Why do you call C is userfriendly language.
int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain me output????
hi any body pls give me company name interview conduct "c" language only
how to use enum datatype?Please explain me?
How can we open a file in Binary mode and Text mode?what is the difference?
what is level of tree if leaf node is at level 4.please explain.
application of static variables in real time
Why & is used in c?
Why the use of alloca() is discouraged?