// Description: A program to test your understanding of escape characters // used in a lecture demonstration // See if you can work out what it would print and then compile it and run // it to check // Author: Angela Finlayson (angf@cse.unsw.edu.au) // Date: 26/02/2017 #include int main(void) { printf("\\\\\n"); return 0; }