Question: C PROGRAM * Make this program so it defines a structure person_t that has the following fields - first name, last name, birth date. All
C PROGRAM
*
Make this program so it defines a structure
person_t that has the following fields - first name,
last name, birth date. All of those should be
C strings with 100 characters. The program should
declare a variable of type person_t, ask the user
for the information, and read into the variable.
Define a function
void print_person(const person_t *p);
that will print the information.
In main, call the print_person function to print the
person information that was read in.
*/
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
