To print the full range of escape characters

#include 
main()
{
	int i = 97 ;
	for (  ; i < 123 ; i++ )
		printf(" \\%c", i  );
}

Code contributed by : Pradeep SP
pradeepcse23@gmail.com

Google