Quick actions

cmd+k|ctrl+k

Navigation

Languages

Struktur Perulangan for

Snippet info

Language

Cpp

Visibility

public

Author

nazihaazzahrahx4

Created

2023-03-13T02:38:46.410466Z

Updated

2023-03-13T02:46:38.056405Z

#include <stdio.h>

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