fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. char bell = '\b'; //특수문자
  5. printf("%c프로그램을 시작합니다.\n", bell); //경고음 발생
  6.  
  7. printf("c:\\work\\chap03\\Ex03_06\\Debug\n"); // 역슬래시 출력
  8.  
  9. printf("\t탭 문자를 출력합니다.\n"); // 탭 문자 출력
  10.  
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 5304KB
stdin
Standard input is empty
stdout
프로그램을 시작합니다.
c:\work\chap03\Ex03_06\Debug
	탭 문자를 출력합니다.