C++: 07-while-loop
Repeating with While Loop, which is entry-controlled.
- 00-intro - Introduction to C++ Tutorial in Malayalam; mentiones terminal and Geany IDE.
- 01-first-program - How to write and run your first C++ program, "Hello World".
- 02-variables-and-data-types - Introduction to variables and data types with the help of a sample program. Please note that the data type ranges listed are for 16 bit machines, which is outdated.
- 03-simple-if - Decision making and branching with Simple If.
- 04-if-else - Decision making and branching using If-Else.
- 05-if-else-if - Decision making and branching using If-Else-if ladder.
- 06-for-loop - Repeating with For Loop, which is entry-controlled.
- 07-while-loop - Repeating with While Loop, which is entry-controlled.
- 08-do-while-loop - Repeating with Do-While Loop, which is exit-controlled.
- 09-1d-array - Introduction to one-dimentional array.
- 10-2d-array - Introduction to two-dimentional array.
- 11-string-1 - Handling text data (part 1).
- 12-string-2 - Handling text data (part 2).
- 13-file-1 - File operations (part 1).
- 14-file-2 - File operations (part 2).
- 15-odd-or-even - Sample program that checks if the given number is odd or even.
- 16-functions - Introduction to functions.