write a coding to print name in center your father's name in right and mother name in left.
Answers
Answered by
1
Answer:
C Basic Declarations and Expressions: Exercise-1 with Solution
Write a C program to print your name, date of birth. and mobile number.
Pictorial Presentation:
C Programming: Print your name, date of birth, and mobile number
C Code:
#include <stdio.h>
int main()
{
printf("Name : Alexandra Abramov\n");
printf("DOB : July 14, 1975\n");
printf("Mobile : 99-9999999999\n");
return(0);
}
Copy
Sample Output:
Name : Alexandra Abramov
DOB : July 14, 1975
Mobile : 99-9999999999
Flowchart:
C Programming Flowchart: Print your name, date of birth, and mobile number
Explanation:
Similar questions
English,
3 months ago
Hindi,
3 months ago
English,
7 months ago
Computer Science,
7 months ago
Political Science,
11 months ago