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 |
Explain the properties of union.
What are the different types of C instructions?
What is pointer to pointer in c language?
By using C language input a date into it and if it is right?
wap in c to accept a number display the total count of digit
Can we use any name in place of argv and argc as command line arguments?
how does the C compiler interpret the following two statements p=p+x; q=q+y; a. p=p+x; q=q+y b. p=p+xq=q+y c. p=p+xq; q=q+y d. p=p+x/q=q+y
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?
Program to swap the any two elements in an array containing N number of elements?
1 Answers Bosch, Glenwood, Ugam Solutions,
what about "char *(*(*a[])())();"
what is difference between ++(*p) and (*p)++
17 Answers Accenture, HCL, IBM,
write a c/c++ program that takes a 5 digit number and calculates 2 power that number and prints it?