Popular Posts

22 .Write a program using for loop and show the value of I .

22 .Write a program using for loop and show the value of I .

#include
#include
int main()
{
clrscr();
int i;
for(i=0;i<=5;i++)
{
cout<<' ';
cout< }
getch();
return 0;
}

Output:
0 1 2 3 4 5


No comments: