Computer Science, asked by sdev25648, 7 months ago

write a coding to print name in center your father's name in right and mother name in left.

Answers

Answered by surajkr5641
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