What is the diffrent between while and do while statement ?
Answer Posted / namrata
In while first condition is checked if condition is not true
then while don't work and not give output but in do while
loop condition is checked when loop is worked at one time
and if the condition is not true then at least one time it
gives output it is the main difference between while & do
while loop.
| Is This Answer Correct ? | 20 Yes | 2 No |
Post New Answer View All Answers
What is c system32 taskhostw exe?
What is substring in c?
Why isn't any of this standardized in c? Any real program has to do some of these things.
Explain enumerated types in c language?
Explain that why C is procedural?
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
Differentiate between a for loop and a while loop? What are it uses?
What is gets() function?
Can you please explain the difference between exit() and _exit() function?
How can you find out how much memory is available?
In this problem you are to write a program that will cut some number of prime numbers from the list of prime numbers between 1 and N.Your program will read in a number N; determine the list of prime numbers between 1 and N; and print the C*2 prime numbers from the center of the list if there are an even number of prime numbers or (C*2)-1 prime numbers from the center of the list if there are an odd number of prime numbers in the list.
Explain how can I manipulate strings of multibyte characters?
What are the advantages and disadvantages of pointers?
What is 'bus error'?
What is the difference between typedef struct and struct?