The For Loop Program in C/C++

The For Loop Program in C/C++


#include<iostream>
using namespace std;
int main()
{
int i;

for(i=0;i<=5;i++)
{
cout << i << endl;
}
}

Comments

Popular posts from this blog

Book-Shop Program using C++

Nesting of For Loop in C/C++

Switch statement in C/C++