Question: Write a C program that reads the size of dynamic array. Your program should create the dynamic array for person structure as shown below. Your
Write a C program that reads the size of dynamic array. Your program should create the dynamic array for person structure as shown below. Your program reads data into the dynamic array and prints the results with proper heading.
struct person
{
int per_no;
char name[20];
char sex;
int age;
float income;
};
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
