What is the diffrent between while and do while statement ?
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / mahfooz
while(//condition checking)
{//if condition is true go inside loop.and its first check
condition then go inside loop.
}
but in do{
}while(//condition checking)..
it wiil go in loop first and then check condition..
it will go iside loop atleast one time..but in while it
may not go even in single time..
| Is This Answer Correct ? | 9 Yes | 1 No |
Answer / ashok
(1)while loop is known as entry control loop.
and do while is known as exit control loop.
(2)in while loop first check given the condition & if it is
true then execute all statement of while loop.if it is
false then terminate control from loop.
and in do while loop first execute all statement of it and
then check condition, if yes it is true, then again do
while loop will execute, if it is false then terminate
control from loop,put semicolon after while statement.
| Is This Answer Correct ? | 7 Yes | 2 No |
Answer / shwetha karkera
In WHILE STATEMENT, the condition is tested first, and then
the statements are executed if the condition turns out to
be true. hence, it is calles as PRE-TESTED LOOPING
CONSTRUCT.
In DO WHILE STATEMENT,the statements are executed for the
first time and then the conditions are tested. if the
condition turns out to be true,then the statements are
executed again.hence it is called as POST-TESTED LOOPING
CONSTRUCT.
SYNTAX FOR WHILE STATEMENT:
while(condition)
{
statement;
}
SYNTAX FOR DO WHILE STATEMENT:
Do
{
statement;
}
while(condition)
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / 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 |
Answer / ishwor pandey
in while first conditionis checked if condition is not true
| Is This Answer Correct ? | 1 Yes | 4 No |
write a program to find a given no. is divisible by 3 or not without using any arthimetic operators?
what is the difference between global variable & static variable declared out side all the function in the file.
What is union and structure?
Write a c program to demonstrate character and string constants?
wat is the difference between array and pointer?
Is an array parameter is always "by reference" ?
Fifty minutes ago if it was four times as many mints past 3 o clock. how many minutes is it to six o'clock n how....?????
4) Write a program that takes a 5 digit number and calculates 2 power that number and prints it. i have done maximum par but i m findind problem in the commented area. please help...
What's wrong with "char *p = malloc(10);" ?
what will be printed by this printf? printf("%c",printf("hi")["sharkselva"])); }
in linking some of os executables are linking name some of them
Write a pro-gramme to determine whether the number is even or odd?