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

위키책, 위키책
둘러보기로 이동 검색으로 이동
  1. include <stdio.h>

int main() {

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

}