bagaimana membuat program hello world di c

#include <stdio.h>
#include <stdlib.h>

int main() {
  printf("Hello, World!");
  return 0;
}
Dull Dugong