Experiment to find out what happens when printf's argument string contains \c, where c is some character not listed above.
NOTE: The following are example escape sequences that are not in the standard C, their behavior is undefined and may varry between compilers. In my case, it compiled with warnings and output the characters without the backslashes, while for another person it errored on their machine.
#include<stdio.h>/* Prints common temperatures from Celsius to Fahrenheit */intmain(){floatfahr,celsius;floatlower,upper,step;lower=0;/* lower limit of temperature scale */upper=300;/* upper limit */step=20;/* step size */celsius=lower;printf("%3s %6s\n","C","F");while(celsius<=upper){fahr=(celsius*(9.0/5.0))+32;printf("%3.0f %6.1f\n",celsius,fahr);celsius=celsius+step;}}