answersLogoWhite

0

Do while in c plus plus?

Updated: 8/10/2023
User Avatar

Wiki User

13y ago

Best Answer

The do while loop is useful for the special loops that they must circulate at least one time.

#include <iostream>

using namespace std;

int main()

{

int num,digit;

cout<<"Enter a #\n";

cin>>num;

cout<<"Invers is : ";

do

{

digit=num/10;

cout<<digit;

num/=10;

} while(num != 0);

return 0;

}

User Avatar

Wiki User

14y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

13y ago

//do while example

#include<stdio.h>

int main(void)

{

const int SECRET_CODE = 15;

int code;

do{

printf("Type the secret code number to enter.\n");

scanf("%d", &code);

}while(code!=SECRET_CODE);

printf("Well done , you can now enter\n");

return 0;

}

#include <stdio.h>

main()

{

int i = 10;

do

{

printf("Hello %d\n", i );

i = i -1;

}while ( i > 0 );

}

/*break in do while*/

#include <stdio.h>

main()

{

int i = 10;

do

{

printf("Hello %d\n", i );

i = i -1;

if( i == 6 )

{ break;

}

}while ( i > 0 );

}

This answer is:
User Avatar

User Avatar

Wiki User

10y ago

#include<iostream>

int main()

{

// Count from 1 to 10 using do-while loop.

int i=0;

do

{

std::cout<<++i<<std::endl;

}while i<10);

// Note: i is 10 at this point...

}

This answer is:
User Avatar

User Avatar

Wiki User

12y ago

Unlike the while() loop, a do..while() loop always executes at least once. Iteration is dependant on the conditional expression which is evaluated at the end of the loop, whereas a while() loop's conditional expression is evaluated before entering the loop, and may never execute. for() loops are also evaluated before entering the loop, but the conditional expression is optional.

This answer is:
User Avatar

User Avatar

Wiki User

14y ago

int main (int argc, char **argv)
{
int i;

i= -1;
while (++i < argc) printf ("%d. '%s'\n", i, argv[i]);
}

This answer is:
User Avatar

User Avatar

Wiki User

13y ago

usable

do statement while (expression);

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Do while in c plus plus?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Example of flowchart of while loop in c plus plus?

kk


What are the three selection structures available in C plus plus?

if while switch


How does C plus plus endeavor to represent the loop paradigm?

Iterative loops in C/C++ are represented by for(), while() and do...while() code blocks. Recursive loops are represented by functions calling themselves.


What is the relationship between database and c plus plus?

There is none. While you can access databases from C++, the two concepts are fundamentally different.


What are common in c and c plus plus?

With slight variations, everything in C is included in C++. However, while C is a procedural language, C++ is object-oriented, so C++ essentially shares nothing with C. C++ is, quite literally, the successor to C.


C program to print numbers 1 to n?

how do we use loops in c plus plus programing and what are basic differences between do,for and while loop


Is for loop is faster than while loop in turbo c plus plus compiler?

No, why did you think so?


What is the notation used to place block of statements in a looping structure in C plus plus?

for( ; ; ) { statement_block; } while( conditional_expression ) { statement_block; } do { statement_block; }while( conditional_expression )


Where was C plus plus language developed at?

It was developed by Bjarne Stroustrup while he was working at AT&amp;T Bell Labs.


How to complete this C plus plus End Of File controlled while loop program?

Add the missing parts.


What is b plus b plus b plus c plus c plus c plus c?

b+b+b+c+c+c+c =3b+4c


What is c plus c plus 2c plus c plus c equal?

c + c + 2c + c + c = 6c