Quick actions

cmd+k|ctrl+k

Navigation

Languages

Perulangan 

Snippet info

Language

Cpp

Visibility

public

Author

varanabila1

Created

2023-05-17T07:36:49.208452Z

Updated

2023-05-17T07:36:49.208452Z

#include <stdio.h>

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