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 / jai

c) Since expn2 becoming false will terminate do-while loop.

Is This Answer Correct ?    10 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)

612


why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above

647


What’s a signal? Explain what do I use signals for?

614


What is the difference between union and structure in c?

581


How do you use a 'Local Block'?

728






Differentiate between calloc and malloc.

762


Add Two Numbers Without Using the Addition Operator

357


What is graph in c?

587


The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder traversal is??? please help me on this

2941


Why is c so important?

599


Write a program which returns the first non repetitive character in the string?

606


How can type-insensitive macros be created?

706


Explain the use of bit fieild.

717


Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?

602


.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }

2004