what are escape sequences explaination with examples

\n    newline
\t     tab
\b    backspace


use of \n is very common in c programming. let us see how it works

{
printf("hello");
printf("how are you");
}
when we run this the display will be as 

hellohow are you 

to overcome this we use format specifier \n  which means newline 

{
printf("hello\n");
printf("how are you\n");
}
when we run this the display will be as
 
hello
how are you