#include <stdio.h>
int main(void)
{
printf("C언어에서 사용하는 \"특수 문자\"에는 여러가지가 있습니다.\n");
printf("\t특수 문자의 바로 앞에는 언제나 \\가 와야 합니다.");
return 0;
}