도순씨의 코딩일지

쉽게 풀어쓴 C언어 EXPRESS Programming 4장 11번 본문

𝐏𝐑𝐎𝐆𝐑𝐀𝐌𝐌𝐈𝐍𝐆/𝐂

쉽게 풀어쓴 C언어 EXPRESS Programming 4장 11번

도순씨 2020. 10. 11. 00:00

11. 다음과 같이 화면에 출력하는 프로그램을 작성하라.

 

1
2
"ASCII code", 'A', 'B', 'C'
\t \a \n
cs

 

1
2
3
4
5
6
7
8
#include <stdio.h>
 
int main(void){
    printf("\"ASCII code\", \'A\', \'B\', \'C\'\n");
    printf("\\t \\a \\n");
    
    return 0;
}
cs

Comments