What is the diffrent between while and do while statement ?
Answer Posted / vaibhav
the while statement first check the condition & then
exicute a statement & do while first exicute a stat. & then
check condi. . do while loop can exicute one time even
condi. is false
| Is This Answer Correct ? | 6 Yes | 2 No |
Post New Answer View All Answers
Are there constructors in c?
Write a program to find the biggest number of three numbers in c?
How can you invoke another program from within a C program?
Is malloc memset faster than calloc?
Explain how can I open a file so that other programs can update it at the same time?
why do some people write if(0 == x) instead of if(x == 0)?
a formula,a series of steps,or well defined set of rules for solving a problem a) algorithem b) program c) erdiagram d) compiler
Why is this loop always executing once?
What is the c value paradox and how is it explained?
What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?
What is wrong in this statement? scanf(ā%dā,whatnumber);
How can I find out the size of a file, prior to reading it in?
Explain how can you check to see whether a symbol is defined?
How many header files are in c?
What is 1f in c?