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
What is a structure in c language. how to initialise a structure in c?
What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?
When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?
why do some people write if(0 == x) instead of if(x == 0)?
When is a null pointer used?
What do you mean by recursion in c?
What is malloc return c?
What does a derived class inherit from a base class a) Only the Public members of the base class b) Only the Protected members of the base class c) Both the Public and the Protected members of the base class d) .c file
How do you initialize pointer variables?
What are the disadvantages of c language?
Tell me what is null pointer in c?
Do array subscripts always start with zero?
Is it better to use malloc() or calloc()?
Tell us the use of fflush() function in c language?
What is the difference between malloc() and calloc() function in c language?