Study/code up
[codeup] 1001번 [기초-출력] 출력하기01
1nfra
2018. 4. 3. 15:00
728x90
C/C++언어에서 가장 기본적인 명령이 텍스트 출력이다.
printf( ) 를 이용해 다음 단어를 출력해보자.
Hello
(단, 글자색은 관계없다.)
1 2 3 4 5 6 7 | #include <stdio.h> int main() { printf("Hello"); return 0; } | cs |
728x90