/* printf escape sequence demonstration program */ #include int main() { printf("Here is the \\a character: \a"); getchar(); return(0); }