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

all c language question

0 Answers   Wipro,


if the address of a[1,1] and a[2,1] are 1000 and 1010 respectively and each occupies 2 bytes then the array has been stored in what order?

4 Answers   Amazon, Apple, Bata, Google, NASA,


Is python a c language?

0 Answers  


Explain how can you tell whether a program was compiled using c versus c++?

0 Answers  


Discuss the function of conditional operator, size of operator and comma operator with examples.

0 Answers   TCS,






write a program to add two numbers of any size.....(remember any size)

1 Answers  


difference between c and c++

3 Answers  


Is Exception handling possible in c language?

0 Answers   Wipro,


what is Structural oriented language? give some example of this language.....?

1 Answers  


"C" language developed by "Dennis Ritchie" at AT & T. his remarks are a) too general, too abstract b) could deal with only specific problems c) lost generality of BCPL and B restored d) no remarks

0 Answers  


#define MAX 3 main() { printf("MAX = %d ",MAX ); #undef MAX #ifdef MAX printf("Vector Institute”); #endif }

1 Answers   Vector India,


program for comparing 2 strings without strcmp()

4 Answers  


Categories