Untitled

 avatar
unknown
plain_text
5 months ago
342 B
2
Indexable
1. Write a C program to print your name, date of birth, and mobile number.
#include<stdio.h>
main(){
    printf("Question 01: Write a C program to print your name, date of birth, and mobile number.\n");
    printf("Name: Polin Akter\n");
    printf("Date of Birth: 08 September 2003\n");
    printf("Mobile Number: 01856566383\n");
}
Editor is loading...
Leave a Comment