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 |
What does void main return?
write a program whose output will be- 1 12 123 1234
Find the O/p of the following struct node { char *name; int num; }; int main() { struct node s1={"Harry",1331}; struct node s2=s1; if(s1==s2) printf("Same"); else printf("Diff"); }
write a own function for strstr
What's wrong with "char *p; *p = malloc(10);"?
Using which language Test cases are added in .ptu file of RTRT unit testing???
While compiling a c program,graphics header files are not including in my program..eg: <graphics.h>,what may be the problem...is there any environment settings exists.
What are enumerated types?
how to print "hai" in c?
What is an example of enumeration?
What does c mean in basketball?
In which header file is the null macro defined?