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