/* File: special.c

   Try some special ascii characters.
*/
#include<stdio.h>
#include <ctype.h>
#include"genlib.h"
#include"simpio.h"

main() {
   char beep, backspace ; 
   char newline, tab, backslash ; 
   char single_quote, double_quote ;

   beep = '\a' ;
   backspace = '\b';
   newline = '\n' ;
   tab = '\t' ;
   backslash = '\\' ;
   single_quote = '\'' ;
   double_quote = '"' ;

   printf("BEEP: %c%c%c", beep, beep, newline) ;
   printf("%c%cMove over\n", tab, tab) ;
   printf("Oops, ooo%c%c%cxxx\n", backspace,
      backspace, backspace) ;
   printf("I%cve written %cHello World%c many times\n",
      single_quote, double_quote, double_quote) ;
}
