Use the most popular Escape Sequences - C Data Type

C examples for Data Type:char

Description

Use the most popular Escape Sequences

Demo Code

#include <stdio.h>
int main()/*from   w  w  w . j  a  va2  s .  c o  m*/
{

    printf("Column A\tColumn B\tColumn C");
    printf("\nMy Computer\'s Beep Sounds Like This: \a!\n");
    printf("\"Letz\bs this is a test test test test \\ \\ ");
    printf("character \\\" she said\n");
    
    return 0;
}

Result


Related Tutorials