Course Content
History of C Language
0/2
Basic Structure of C Program
0/1
Types of Errors
0/1
Language Fundamentals
0/1
Data Types and Modifiers
0/1
Programming with C Language
About Lesson

Escape Characters or Escape Sequences

Another special character here that are used with printf statement also known as Escape Characters.  These characters are prefixed with a backward slash(\) denotes a special meaning for printf to print output.

 

\b

Backspace

\n

Newline

\t

horizontal tab

\”

double quote

\’

single quote

\\

Backslash

\v

vertical tab

You cannot copy content of this page