Write a C program to print your name, date of birth, mobile numbers and university’s name on separate line.
#include <stdio.h>
int main(){
printf("Name: John Doe\n");
printf("Date of birth: 19/11/2000\n");
printf("University name: Oxford University\n");
return 0;
}
Comments
Leave a comment