Please write a program in (C) not (C++).
a. Defines a structure called Employee that contains a character member called id that can hold an id that is up to 9 characters long and a float member representing the salary.
b. Define and integer variable named EmployeesCount and initialize it to 3 employees .
c. Allocate enough memory for an array to hold the information for the following three employees
d. Have your program give every employee a raise of 10% and display the new information about your employees (The program has to calculate the salary and not you using a calculator)
e. Your program must not cause any memory leaks