What is the diffrent between while and do while statement ?

Answers were Sorted based on User's Feedback



What is the diffrent between while and do while statement ?..

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

What is the diffrent between while and do while statement ?..

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

What is the diffrent between while and do while statement ?..

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

What is the diffrent between while and do while statement ?..

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

What is the diffrent between while and do while statement ?..

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

What is the diffrent between while and do while statement ?..

Answer / ishwor pandey

in while first conditionis checked if condition is not true

Is This Answer Correct ?    1 Yes 4 No

Post New Answer

More C Interview Questions

write a program that will print %d in the output screen??

9 Answers   Infosys,


Difference between pass by reference and pass by value?

0 Answers   TCS, TISL,


what does ‘segmentation violation’ mean?

1 Answers  


What is ponter?

0 Answers   TCS,


fn f(x) { if(x<=0) return; else f(x-1)+x; }

5 Answers   HCL,






How to write a multi-statement macro?

0 Answers  


What are the uses of a pointer?

0 Answers  


hw can we delete an internal node of binary search tree the internal node has child node..plz write progarm

0 Answers   TCS,


Where is volatile variable stored?

0 Answers  


What does int main () mean?

0 Answers  


What are shell structures used for?

0 Answers  


diff. between *p and **p

3 Answers  


Categories