Showing posts with label c while loop. Show all posts
Showing posts with label c while loop. Show all posts

Thursday, 17 October 2013

While Loop In C++

While Loop In C++: In C++, there are times when it becomes necessary to repeat a set of statements several times. One way is to write the code in the program over and over but that would make the code very long and it would become a messy code. Just imagine that if you have to repeat a set of statements 100 times then you have to write that 100 times again and imagine where the length of the code would go. Fortunately, we have a way that finishes...