Q:

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

0

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

Expected Output:

Name   : Alexandra Abramov  
DOB    : July 14, 1975  
Mobile : 99-9999999999

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

#include <stdio.h> 
 int main()  
  {
     printf("Name   : Alexandra Abramov\n"); 
     printf("DOB    : July 14, 1975\n"); 
     printf("Mobile : 99-9999999999\n"); 
     return(0); 
  }

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C Basic Declarations and Expressions exercises

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Write a C program to get the C version you are usi... >>