C Program to print your Name

 //C Program to print your name

#include<stdio.h>                  //header file declaration

int main()                                 // main method

{

   printf("My name is: POOJA SHARMA");            //print your name

   getch();

}


OUTPUT:



Comments

Popular posts from this blog

C Program to print Fibonacci Series