Answer to Question #274476 in C++ for Asif

Question #274476

1. Write a C program to print your name, date of birth, mobile numbers and university’s name on separate line.




1
Expert's answer
2021-12-04T01:27:23-0500
#include <stdio.h>

int main()
{
    printf("%s\n", "Will Smith");
    printf("%s\n", "04. 12. 2021");
    printf("%s\n", "+1234567890");
    printf("%s\n", "Harvard University");
    return 0;
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment