while loop

PHOTO EMBED

Tue Jun 07 2022 19:58:52 GMT+0000 (Coordinated Universal Time)

Saved by @KanishqJ8

int main(){
    int i=0;
    while(i<54){
        printf("%d \n",i);
        i+=1;
    }
    return 0;
}
content_copyCOPY