Quick actions

cmd+k|ctrl+k

Navigation

Languages

/* Perulangan While Loob */

Snippet info

Language

Cpp

Visibility

public

Author

afton7127

Created

2023-05-28T03:35:51.9891Z

Updated

2023-05-28T03:35:51.9891Z

/* Perulangan While Loob */
#include <stdio.h>

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