printf(“%d”, root*root);
You can use an expression as a variable in a printf statement
Do… while, is a post test loop.
First it does it. Then it checks the condition.
initialization
do {
body
Update
} while (condition test);
Nested Loops
- IF outer loops executes n times, and inner loop m times, inner loop executes n * m times.
Tags: do while, Loops, Nested Loops
Reply
You must be logged in to post a comment.
No comments
Comments feed for this article
Trackback link: http://blog.carriesegal.com/wp-trackback.php?p=230