for loop in c++
This video tutorial explains the for loop in c++.
You will learn the for loop along with its syntax and example in detail.
source code for this tutorial
#include <iostream>
using namespace std;
int main()
{
for ( int counter = 1; counter <= 30; counter++ ){
cout << "Learning Lad Rocks"<<endl;
}
return 0;
}