can you help me get the expected output like what's on the photo. below is my source code in basic c language   #include typedef struct {     int age; } Person; void displayPerson(Person); int main(void) {     return 0; } void displayPerson(Person p) {     printf("PERSON DETAILS:\n");     printf("Age: %d\n", p.age);     printf("Gender: ");     if(p.gender == 'M') {         printf("Male");     } else {         printf("Female");     } }

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question

can you help me get the expected output like what's on the photo. below is my source code in basic c language

 

#include<stdio.h>

typedef struct {
    int age;
} Person;

void displayPerson(Person);

int main(void) {

    return 0;
}

void displayPerson(Person p) {
    printf("PERSON DETAILS:\n");
    printf("Age: %d\n", p.age);
    printf("Gender: ");
    if(p.gender == 'M') {
        printf("Male");
    } else {
        printf("Female");
    }
}

Instructions:
1. In the code editor, you are provided with the definition of a
struct Person. This struct needs an integer value for its age.
Furthermore, you are provided with a displayPerson()
function which accepts a struct Person as its parameter.
2. Your task is to first update the struct Person so that it can
have a gender as well. For this program, we shall represent a
gender with a single character: 'M' for male and 'F' for
female.
3. Then, create a Person, take in an integer user input and a
character user input, and then set them as the Person's age
and gender respectively.
4. Finally, call the displayPerson() function and pass that
Person you created.
Input
1. The age of the Person
2. The gender of the Person
Output
Enter Person's age: 24
Enter Person's gender: M
PERSON DETAILS:
Age: 24
Gender: Male
Transcribed Image Text:Instructions: 1. In the code editor, you are provided with the definition of a struct Person. This struct needs an integer value for its age. Furthermore, you are provided with a displayPerson() function which accepts a struct Person as its parameter. 2. Your task is to first update the struct Person so that it can have a gender as well. For this program, we shall represent a gender with a single character: 'M' for male and 'F' for female. 3. Then, create a Person, take in an integer user input and a character user input, and then set them as the Person's age and gender respectively. 4. Finally, call the displayPerson() function and pass that Person you created. Input 1. The age of the Person 2. The gender of the Person Output Enter Person's age: 24 Enter Person's gender: M PERSON DETAILS: Age: 24 Gender: Male
Expert Solution
steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY