Quick actions

cmd+k|ctrl+k

Navigation

Languages

Struktur perulangan (perulangan Do...while)

Snippet info

Language

Cpp

Visibility

public

Author

karelzzzzz27

Created

2023-05-27T09:04:47.159719Z

Updated

2023-05-27T09:04:47.159719Z

#include <stdio.h>

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