Quick actions

cmd+k|ctrl+k

Navigation

Languages

Perulangan Do...While

Snippet info

Language

Cpp

Visibility

public

Author

maulinurmawulandari

Created

2023-05-27T02:29:08.746405Z

Updated

2023-05-27T02:29:08.746405Z

#include <stdio.h>

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