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

1.81K viewsBasicC Programming
0

Expected Output

Name : John Doe
DOB : Jan 10 1990
Mobile : 12-1234567890

Chandan Changed status to publish October 9, 2021
0

Code

#include
int main()
{
printf("Name : John Doen");
printf("DOB : Jan 10, 1990\n");
printf("Mobile : 12-1234567890\n");
return(0);
}

Chandan Changed status to publish October 9, 2021
You are viewing 1 out of 1 answers, click here to view all answers.