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 |
What is the explanation for the dangling pointer in c?
What has to put when we are inserting as assembly language code into the C code? or When we are inserting as assembly language code into the C code we have to insert one thing at the start and of the assembly language. What are they?
Explain about the constants which help in debugging?
Explain c preprocessor?
How are Structure passing and returning implemented by the complier?
What are pointers? Why are they used?
What is equivalent to ++i+++j?
I came across some code that puts a (void) cast before each call to printf. Why?
In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)
What is wrong in this statement? scanf(“%d”,whatnumber);
what is the difference between strcpy() and memcpy() function?
main() { int i=0; while(+(+i--)!=0) i-=i++; printf("%d",i); }