c and c++ tutorials // online learning spot
Escape Sequences are embedded in between the Strings that we compose to print on screen.
Escape Sequences are embedded in between the Strings that we compose to print on screen.
To print : online
learning
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 :
No comments:
Post a Comment