answersLogoWhite

0


Best Answer

A while statement is one type of looping statement.

by which we can start a loop in our programs.

while loop is precondition checking statement,

because it first check its condition then loop will go to its body part.

EX.

while(i>0)

{

//body part

}

here when i will >0 then it will check it body part and execute it and display

result.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is a while statement in turbo c plus plus?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

What are the conditional statement of turbo c plus plus dos based?

Statements that check an expression then may or may not execute a statement or group of statements depending on the result of the condition.


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

No, why did you think so?


To develop a taj mahal using c-language programming in turbo c plus plus?

turbo c


What is a do while statement in c plus plus?

A do-while statement is a type of loop that iterates while a condition remains true. The condition is evaluated at the end of each iteration, thus the statement always executes at least once. do { statement; } while (expression);


What is tlink in c plus plus compiler?

TLINK is the Turbo C++ linker utility. You use it to link the object files created by the Turbo C++ compiler.

Related questions

What are the three looping statement in turbo C?

for,while,do while


What is looping statement in turbo c?

while, for, do-while (and perhaps goto)


What is the differentiate of turbo c from turbo c plus plus?

Turbo C compiles c source. turbo c++ compiles c++ source code.


How the turbo c plus plus use in the computer?

How the turbo c plus plus use what in the computer.


What are the conditional statement of turbo c plus plus dos based?

Statements that check an expression then may or may not execute a statement or group of statements depending on the result of the condition.


Who develop the turbo c plus plus?

The company Borland developed Turbo C++.


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

No, why did you think so?


Is there any difference between turbo c and c plus plus?

turbo c is a compiler and c++ is a programming language.


What is turbo c plus plus?

Turbo C++ is Borland's integrated development environment (IDE).


To develop a taj mahal using c-language programming in turbo c plus plus?

turbo c


Conditional statement in turbo c?

Yes.


What is a do while statement in c plus plus?

A do-while statement is a type of loop that iterates while a condition remains true. The condition is evaluated at the end of each iteration, thus the statement always executes at least once. do { statement; } while (expression);