Consider the following statements:
struct rectangleData{
double length; double width; double area; double perimeter;};rectangleData bigRect;
Which of the following statements correctly initializes the component length of bigRect?
A. bigRect = {10};
B. bigRect.length = 10;
C. length[0]= 10;
D. bigRect[0]= 10
Answer: B
Computer Science & Information Technology
You might also like to view...
A top-level domain is the top of the DNS hierarchy
Indicate whether the statement is true or false
Computer Science & Information Technology
Which symbols would be used to create a custom date format that would display July 4, 2016 as 7/04/16?
A. mm/dd/yyyy B. m/ddd/yy C. mmm/d/yyyy D. m/dd/yy
Computer Science & Information Technology