NETWORK & SEVER FACTORY

개인 공부 기록

Study/code up

[codeup] 1005번 [기초-출력] 출력하기05

1nfra 2018. 4. 3. 17:38
728x90

이번에는 큰 따옴표(") (Double Quotation mark)를 문장에 넣어 출력해야 한다.

다음과 같은 문장을 출력하시오.


"Hello World"

(주의 : 큰 따옴표(")도 함께 출력되어야 한다.)

1
2
3
4
#include <stdio.h>
int main(){
    printf("\"Hello World\"");
}
cs


728x90