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 / 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 |
Post New Answer View All Answers
How we can insert comments in a c program?
What is main function in c?
Explain union. What are its advantages?
how logic is used
I was asked to write a program in c which when executed displays how many no.of clients are connected to the server.
how to write optimum code to divide a 50 digit number with a 25 digit number??
Explain what are the __date__ and __time__ preprocessor commands?
Explain output of printf("Hello World"-'A'+'B'); ?
What are pointers? What are different types of pointers?
What is LINKED LIST? How can you access the last element in a linked list?
Do character constants represent numerical values?
Do you know the difference between malloc() and calloc() function?
Write a program to check armstrong number in c?
why programs in c are running with out #include
What are the main characteristics of c language describe the structure of ac program?