cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
Beginners
Help!
Help!
Jul 27, 2011 at 6:20pm UTC
Brad1
(19)
What are the values of i and n after this loop executes?
int n = 0;
int i = 10;
while (i > 5)
{
n += 4;
i -= 2;
}
Jul 27, 2011 at 6:59pm UTC
Intrexa
(291)
cout after the loop to check the values.
Topic archived. No new replies allowed.