11. A struct for a labeled point in (xy) space is defined as follows: typedef struct Point_struct t double xcoor I/x-coordinate for the point double ycoor; //y-coordinate for the point char label [10]; //label for the point Point; Point aPoint; Point arrayOfPoints[51 Answer either true (T) or false (F): arrayOfPoints [3] is an instance of the struct Point that a. stores 2 doubles and 10 chars. b. Write a single line of code to assign the value of the x-coordinate for aPoint to 5.5. Write a single line of code to assign the value of the y-coordinate for aPoint to the x-coordinate of the last Point in arrayOfPoints[1. c. Write a single line of code to duplicate all the information about aPoint and store it in the first element of arrayOfPoints Il d. e. Write the necessary lines of code to declare a new Point called aSquare, which is on the parabola yx forx-4. Label the point in the format of (x.y), with the actual values in place ofx and y.