Quick actions

cmd+k|ctrl+k

Navigation

Languages

Perulangan do... while

Snippet info

Language

Cpp

Visibility

public

Author

niokarlino

Created

2023-06-13T00:44:02.096509Z

Updated

2023-06-13T00:51:22.228553Z

#include <stdio.h>
int main(void)
{
    int i = 1;
    do {
        printf("hallo \n");
        i++;
    }
    while (i <=4);
    return 0; 
   
}
INFO