Quick actions

cmd+k|ctrl+k

Navigation

Languages

Perulangan do...while

Snippet info

Language

Cpp

Visibility

public

Author

varanabila1

Created

2023-05-17T07:40:29.327889Z

Updated

2023-05-17T07:40:59.197281Z

#include <stdio.h>

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