Respuesta :
Answer:
Answer is explained below
Explanation:
List of escape character and their use:
\a Alarm or Beep
\b backspace character transfers the cursor one character back
\f Form Feed
\n New Line
\r Carriage Return Character
\t Tab (Horizontal) \t is a horizontal tab character
\v Vertical Tab character
\\ Backslash (escape sequence to print backslash)
\? Question Mark
\' Single Quote (Escape character to print ' single quote)
\" Double Quote (Escape character to print " double quote)
#include <stdio.h>
int main()
{
printf("Hello World\n");
printf("H\ae\al\al\ao World\n");
printf("Hello Wo\b\brld\b\b\b\n");
printf("Hello World\n");
printf("Hello wr \r old\n");
printf("Hello \tWorld\n");
printf("Hello"); printf("\v world\n");
printf("Hello\\World\n");
printf("\?Hello World\n");
printf("\'Hello World\n");
printf("\"Hello World\n");
return 0;
}
Output:
