Program :
#include<iostream>
#include<conio.h>
using namespace std;
int main()
{
int i=6;
for(--i;--i;i--)
cout<<i;
getch();
}
Output :
0 Comments