Quick actions

cmd+k|ctrl+k

Navigation

Languages

While Loop 

Snippet info

Language

C

Visibility

public

Author

rizkymaula

Created

2025-05-16T06:35:08.435449Z

Updated

2025-05-16T06:41:06.266866Z

#include <stdio.h>

int main(void)
{
    int i = 1;
    while (i <= 4) {
        printf("Hallo \n");
        i++;
    }
    return 0;
}
INFO