Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Considering the C code shown at the right, and assuming that a double occupies 8

ID: 3571292 • Letter: C

Question

Considering the C code shown at the right, and assuming that a double occupies 8 bytes of memory, answer the following questions. typedef struct Point {double x; double y; double z;} Point; Point myOrigin; Which ONE of the following statements is FALSE? The name of the data type being defined is Point. x, y, and z are all members of the structure. myOrigin is a variable whose data type is Point. Point is a variable whose data type is myOrigin. Which ONE of the following is the minimum number of bytes occupied by myOrigin? 8 12 24 64 Which ONE of the following correctly stores the value 42.5 into the y member of the myOrigin variable? myOrigin = 42.5; myOrigin. y = 42.5; myOrigin rightarrow y = 42.5; myOrigin. x = 42.5; y. myOrigin = 42.5;

Explanation / Answer

8)d. Point is a variable whose data type is my origin, is False

9) c. 3 double variables = 3*8bytes =24 bytes

10)c. myorigin->y=42.5