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 / mannucse
d
| Is This Answer Correct ? | 0 Yes | 4 No |
Post New Answer View All Answers
What are the 5 data types?
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
What is the easiest sorting method to use?
Do you know the difference between malloc() and calloc() function?
HOW TO SOLVE A NUMERICAL OF LRU IN OS ??????
What is the concatenation operator?
please can any one suggest me best useful video tutorials on c i am science graduate.please help me.u can email me to sas29@in.com
Differentiate between a structure and a union.
How can I find out if there are characters available for reading?
What is scope of variable in c?
What are run-time errors?
How does #define work?
Is swift based on c?
What is the difference between typedef and #define?