discussion

profilePuncho
DISCUSSION1.odt

In addition to the \n that you used to create a new line in C, several other escape characters exist including:

   b Backspace (non-erase)
   n New line
   r Carriage Return
   t Tab
     \ Backslash
   ? Question mark
   ' Single quote
   " Double quote

They all are implemented the same way by placing a backslash in front of the character (e.g. \n  \t ...)

Of course the end results will be different for each.

Using the hello, world example as a template, modify the statement that includes the \n and add one or more additional escape characters from the list above.

Show your code and explain what happened.