C program to display the following lines of text in the same format retaining the spaces in between the text (use escape sequence \n, \t) - With Output

#include<stdio.h>
#include<conio.h>

void main()
{
                printf("This is my first program in C \n");
                printf("I Love Programming in \"C\"\n");
                printf("*********\t*********");
                getch();

}


OUTPUT:

This is my first program in C
I Love Programming in "C"
*********        *********
Share on Google Plus

About Akash Manhas

This is a short description in the author block about the author. You edit it by entering text in the "Biographical Info" field in the user admin panel.
    Blogger Comment
    Facebook Comment

0 comments:

Post a Comment