Quick actions

cmd+k|ctrl+k

Navigation

Languages

Pengulangan white loop

Snippet info

Language

Cpp

Visibility

public

Author

faazaircham01

Created

2023-05-24T02:24:43.338136Z

Updated

2023-05-24T02:24:43.338136Z

#include <stdio.h>

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