printf Example

post-image



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

void main()
{
    clrscr();

    printf("\tMy Introduction\n");
    printf("Hey Friends I'm Preetam\n");
    printf("I'm a student of University of Calcutta");
    printf("\nC programming is best for me.\n");
    printf("\t");
    getch();
}



Output:
    My Introduction
Hey Friends I'm Preetam
I'm a student of University of Calcutta
C programming is best for me.