struct Rectangle{
int length;
int Width;
a) Declare a structure variable My_Rectangle of the structure's type.
b) Write a call statement that calls the Display Function.
c) Write the function's prototype for the Display Function, which receives the structure from main and displays its members. Pass by reference.
d) Write the function's definition that accepts a Rectangle structure as its argument and displays the structure's contents on the screen (Pass by Reference).
30 points