--입력-- 없음 --출력-- Hello World!
출력하는 방법을 익히는 단계.일반적인 콘솔 출력은 stdio.h 라이브러리에 포함된 printf("문자열"); 함수를 사용한다.
#include <stdio.h> int main() { printf("Hello World!"); return 0; }