Quick actions

cmd+k|ctrl+k

Navigation

Languages

/* Perulangan Do...While */

Snippet info

Language

Cpp

Visibility

public

Author

afton7127

Created

2023-05-28T03:36:50.042643Z

Updated

2023-05-28T03:36:50.042643Z

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

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