#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

Popular posts from this blog

#64_Funtions for File I/O in C

#51_Ex_Game