Design and test sample C programs to display a message (Name, Address, Contact no., e-mail, Year of admission) on screen.

Code

#include <stdio.h>
int main()
{
printf("Name : Tony Stark\n");
printf("Address : 29 May 1970\n");
printf("Contact no : 99-9999999999\n");
printf("Email: tony@ironman.com\n");
printf("Year of admission: 2021\n");
return (0);
}
Output


Try code with your information