Study/code up
[codeup] 1002번 [기초-출력] 출력하기02
1nfra
2018. 4. 3. 15:03
728x90
이번에는 공백이 들어있는 문장을 출력해보자.
다음 문장을 출력해보자.
Hello World
(대소문자에 주의한다.)
1 2 3 4 5 6 | #include <stdio.h> int main() { printf("Hello World"); return 0; } | cs |
728x90