𝐏𝐑𝐎𝐆𝐑𝐀𝐌𝐌𝐈𝐍𝐆/𝐂
쉽게 풀어쓴 C언어 EXPRESS Programming 4장 10번
도순씨
2020. 10. 10. 00:00
10. 경보음이 울린 후에 다음과 같은 메시지를 출력하고 다시 경보음이 울리는 프로그램을 작성하여 보자.
12345678910#include <stdio.h> int main(void){ printf("\a"); printf("화재가 발생하였습니다."); printf("\a"); return 0;} cs