In the code editor, you are provided with the definition of a struct Person. This struct needs an integer value for its age and a character value for its gender. Furthermore, you are provided with a displayPerson() function which accepts a struct Person as its parameter. In the main(), there are two Persons already created: one Male Person and one Female Person. Your task is to first ask the user for the age of the Male Person and the age of the Female Person. Then, define and declare a function called createKidPerson() which has the following definition: Return type - Person Name - createKidPerson Parameters Person father - the father of the kid to be created Person mother - the mother of the kid to be created Description - creates a new Person and returns this. The age of this Person will be set to 1 while its gender will be set based on the rules mentioned above. Finally, create a new Person and call this createKidPerson() in the main and then pass this newly created Person in the displayPerson() function.
This program needs a function which shall be named createKidPerson and the instruction below will make it clearer.
This is a C code program.
Instructions:
- In the code editor, you are provided with the definition of a struct Person. This struct needs an integer value for its age and a character value for its gender. Furthermore, you are provided with a displayPerson() function which accepts a struct Person as its parameter. In the main(), there are two Persons already created: one Male Person and one Female Person.
- Your task is to first ask the user for the age of the Male Person and the age of the Female Person.
- Then, define and declare a function called createKidPerson() which has the following definition:
- Return type - Person
- Name - createKidPerson
-
Parameters
- Person father - the father of the kid to be created
- Person mother - the mother of the kid to be created
- Description - creates a new Person and returns this. The age of this Person will be set to 1 while its gender will be set based on the rules mentioned above.
- Finally, create a new Person and call this createKidPerson() in the main and then pass this newly created Person in the displayPerson() function.
#include<stdio.h>
typedef struct {
int age;
char gender;
} Person;
void displayPerson(Person);
int main(void) {
int a;
Person father;
Person mother;
father.gender = 'M';
mother.gender = 'F';
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");
}
}
Input
1. The age of the Male Person
2. The age of the Female Person
Output should be:
Enter the Male Person's age: 24
Enter the Female Person's age: 21
PERSON DETAILS:
Age: 1
Gender: Male
Second test case or second output:
Enter the Male Person's age: 21
Enter the Female Person's age: 24
PERSON DETAILS:
Age: 1
Gender: Female
Trending now
This is a popular solution!
Step by step
Solved in 3 steps with 1 images