fork download
  1. /*
  2. 1. Print name, DOB, and mobile number
  3.  
  4. Write a C program to print your name, date of birth, and mobile number.
  5. Expected Output:
  6.  
  7. Name : Alexandra Abramov
  8. DOB : July 14, 1975
  9. Mobile : 99-9999999999
  10. */
  11.  
  12. #include <stdio.h>
  13. int main()
  14. {
  15. printf("Alexandra Abramov\n");
  16. printf("July 14, 1975\n");
  17. printf("99-9999999999\n");
  18. return 0;
  19.  
  20. }
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
Alexandra Abramov
July 14, 1975
99-9999999999