C 프로그래밍 입문/helloe world hello world

  1. include <stdio.h>

int main() {

 printf("Hello World \n");
 return 0;

}