C Program to use of \t and \n characters

 

C Program to use of \t and \n characters


 

// C Program to use of \t and \n characters

#include<stdio.h>

void main()

{

    clrscr();

    printf("\t\t\t***Output***\n");

   printf("Hello students\n"); // print on new line

    printf("This is use of special characters:\t\tC program\n"); //\t give tab or space

    printf("End of program");

   

}

***Output***

Hello students

This is use of special characters:                C program

End of program

टिप्पणी पोस्ट करा

0 टिप्पण्या