#13_LOOPs- Do_While loops in c
#include<stdio.h>
//Do-While Loop
int main()
{
int num , index=0;
printf("Enter a number\n");
scanf("%d",&num);
do
{
printf("%d\n",index);
index=index+1;
} while (index<num);
return 0;
}
Comments
Post a Comment