Program to Display a message in C

Program

#include <stdio.h>
int main()
{
printf ("****************************************************************");
printf ("\n****************************************************************");
printf ("\n**              Program to display a message in C             **");
printf ("\n**                   Created by Sheetal Garg                  **");
printf ("\n**                     Assistant Professor                    **");
printf ("\n**                     Phone No:9467863365                    **");
printf ("\n****************************************************************");
printf ("\n****************************************************************");
printf ("\nWelcome to Programming");
return 0;
}

Output

****************************************************************
****************************************************************
**              Program to display a message in C             **
**                   Created by Sheetal Garg                  **
**                     Assistant Professor                    **
**                     Phone No:9467863365                    **
****************************************************************
****************************************************************
Welcome to Programming
error: You can only copy the programs code and output from this website. You are not allowed to copy anything else.