1#include <iostream>
2using namespace std;
3int main(){
4 for(int i=1; i<=6; i++){
5 /* This statement would be executed
6 * repeatedly until the condition
7 * i<=6 returns false.
8 */
9 cout<<"Value of variable i is: "<<i<<endl;
10 }
11 return 0;
12}