Tuesday, 3 September 2013

Use of Escape Sequences

c and c++ tutorials // online learning spot
Escape Sequences are embedded in between the Strings that we compose to print on screen.
To print : online
                          learning
                                       spot
we have to compose our string as : "online\n\tlearning\n\t\tspot"
and put this string inside : printf("online\n\tlearning\n\t\tspot")

Program
#include<stdio.h>
main()
{
 printf("online\n\tlearning\n\t\tspot");
}

Output :


<<Back        Next>>

No comments:

Post a Comment