use of while loop
#include<stdio.h>
main()
{
int i=1;
while (i<=5)
{
printf("\nrahul");
i++;
}
}
output :
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