C program to print your name, date of birth. and mobile number


 #include <stdio.h> 


 int main()  

  {

     printf("Name   : CodeWithBrain\n"); 

     printf("DOB    : 11-Dec-2000\n"); 

     printf("Mobile : +910000000000\n"); 

   

  }

The output is:-



Post a Comment

0 Comments