/* * escsq.c - working with excape sequences */ #include int main(void) { printf("Hello, MIT"); printf("\r\tLA"); printf("\b\b\b"); printf("Computer Gurus!"); printf("\a\n"); printf("Guess what happenes?\n"); return 0; }