Simple printf example in c
// simple printf example #include<stdio.h> #include<conio.h> void main() { clrscr(); printf("\tMy Introduction\n"); printf("Hey Friends I m Ram\n"); printf("I m student of BeTheDeveloper.com"); printf("\nC programming is best for me."); printf("\t"); getch(); } Output: My Introduction Hey Friends I m Ram I m student of BeTheDeveloper.com C programming is best for me.