2: Write a C program to print your name, date of birth. and mobile number.

/*Write a C program to print your name, date of birth. and mobile number.
Expected Output:

Name   : Max Abramav  
DOB    : June 15, 1965  
Mobile : 88-8888888888*/
===========================================================================
#include<stdio.h>
main()
{
printf("Name   : Max Abramav \n");
printf("DOB    : June 15, 1965\n");
printf("Mobile : 88-8888888888\n");
return(0);
}

Comments