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 real time usage volatile?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
0 Answers Lovely Professional University,
main() { printf(5+"Vidyarthi Computers"); }
Difference between C and Embedded C?
What's a good way to check for "close enough" floating-point equality?
What is assignment operator?
What is the difference between %d and %*d in C
Write a routine that prints out a 2-D array in spiral order!
Write a c program for sum of first n terms of the series S = 1 - (1/3) + (1/5) -(1/7) + (1/9) ......
How do you search data in a data file using random access method?
Can you write a programmer for FACTORIAL using recursion?
What are header files in c programming?