Program: Create a function that normalizes a numeric vector (returns a unit vector).
• Function Name: normalizeVector
• Input: single input; vector. Be sure to test that the input is a vector.
• Output: IF input is as defined - a unit vector of the same size as the input is returned.
IF input is not as defined - the function returns NaN.
Add comments in code section. Code this program in c programming.