Use of Backslash "\n" in C language
Why Backslash "n" is used in "printf" in machine languages Answer: Backslash "\n" is used in many programming languages. It is called as newline character. We use Backslash "\n" to bring a newline in our output . This newline character is a type of escape sequence . This helps the programmer or the coder to display the output with an alignment . It also help others to see and understand the output clearly. The Backslash "\n" is used only in "printf" statements There are also other escape sequence characters like "\t" . "\t" is use for tab space . It...