Study/code up
[codeup] 1004번 [기초-출력] 출력하기04
1nfra
2018. 4. 3. 15:18
728x90
이번에는 작은 따옴표(') (Single Quotation mark)를 문장에 넣어 출력해야 한다.
다음과 같은 문장을 출력하시오.
'Hello'
(주의 : 작은 따옴표(') 도 출력되어야 한다.)
1 2 3 4 | #include <stdio.h> int main(){ printf("\'Hello\'"); } | cs |
728x90