Using do while loop

 #include<stdio.h>


int main(){

    int i = 220;


    do{

        printf("The value of i is %d\n", i);

        i++;

    }while(i <10);


    return 0;

}

Comments

Popular posts from this blog

Snake game.c

Type declaration

Array with function