Write a C program to print your name, date of birth. and mobile number. 1.39K viewsOctober 9, 2021BasicC Programming0 Chandan84 October 8, 2021 0 Comments Expected OutputName : John Doe DOB : Jan 10 1990 Mobile : 12-1234567890You may likeChandan Changed status to publish October 9, 2021 1 AnswerActiveVotedNewestOldest 0 Chandan84 Posted October 8, 2021 0 Comments Code#include int main() { printf("Name : John Doen"); printf("DOB : Jan 10, 1990\n"); printf("Mobile : 12-1234567890\n"); return(0); }You may likeChandan Changed status to publish October 9, 2021 Register or LoginShare Facebook Twitter Pinterest Linkedin