Question: please written in C The Function to Write First, get the file mini-5.h from the course gitlab. It has these definitions: #define MAXNAMELEN 32 typedef
please written in C

The Function to Write First, get the file mini-5.h from the course gitlab. It has these definitions: \#define MAXNAMELEN 32 typedef struct \{ char name [MAXNAMELEN] ; int id; \} Record; Include mini-5. h in your source file. Then write the following function: int createRecords (unsigned int numRecords, int *ids, char **names, Record **records); This will take an array of numRecords ids and numRecords strings and use these values to allocate an array of numRecords entries of type Record and fill in each entry with the corresponding value from ids and names; and return the new array through the pass-by-reference parameter records. If ids or records or names is NULL, then the function should return 1 and not allocate any memory. Otherwise, it should create the array as described above and return zero. If numRecords is zero, then the function should not allocate a new array, but it should return zero
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
