Problem:
Question: Write a function initializeList which creates a linked list of employeeinformation where each node contains an employeeData struct and a pointercalled next. The employee information will be read from an input fileempInfo.txt. This file contains data for each employee on a single line. Aline of data beginning with zero is used to indicate the end of the input data
Show the code, demonstrate it works properly and describe what it is doing.