출력하기01(설명) [0001 / 0001] 
Time Limit(Test case) : 1000(ms)Number of users who solved : 13485 Total Tried : 52572
The Champion of this Problem (C++) : admin - ms / 58byte
My Best Submission (C++) : N/A
[HyunSeok Jeon 2013]
Writer ID : [melongist]

Background
C/C++언어에서 가장 기본적인 명령이 출력문이다.printf()를 이용해 다음 단어를 출력하시오.
Hello
참고
C/C++ IDE 프로그램을 설치한 후,
아래와 같은 소스 코드를 작성하고 "컴파일-실행"을 수행시키면,
지정한 "문장"이 출력된다.
#include <stdio.h>
int main()
{
printf("문장");
return 0;
}
** 주의 : 본 화면에서 복사하여 붙여넣기하면 제대로 되지 않을 수 있으니 직접 소스코드를 작성해 넣어야 한다.
(C언어 기초 100제 v1.1)
Input
없음Output
Hello를 출력한다.
IO Example
입력없음
출력
Hello
Prob Analysis : [Problem Statistics] | [Solution]