first program of for loop
#include<stdio.h>
#include<conio.h>
main()
{
int i=1;
for(i=1;i<=5;i++)
{
printf("\n rahul");
}
getch();
}
outline :
rahul
rahul
rahul
rahul
rahul
This blog is for basic programming tutorial. Mostly programs of c and c++ programming are available here .
Comments
Post a Comment