Write a C++ program to print number from 1 to 10.


This program is an example of for(;;) loop control statement.

Syntax of for(;;) loop: for(initialization; condition; increment/decrement)
Example: for( i=1; i<=10;i++)



Program Code: 

#include <iostream>
using namespace std;
int main()
{
// This variable used for loop control 
int i; 
// This loop is used to display the numbers 1 through 10
for(i = 1; i <= 10; i++) 
{
cout<<i;
cout<<endl;
}
return 0;

}


The program output is tested on www.jdoodle.com
Output:
1
2
3
4
5
6
7
8
9
10



Thanks

Mukesh Rajput
Mukesh Rajput

Mukesh Rajput

I am a Computer Engineer, a small amount of the programming tips as it’s my hobby, I love to travel and meet people so little about travel, a fashion lover and love to eat food, I am investing a good time to keep the body fit so little about fitness also..

Post A Comment:

0 comments: