Problem 3
Both arrays and structures are capable of storing multiple values. What is the difference between an array and a structure?
Problem 4
Look at the following structure declaration. struct Point { int x; int y; }; Write statements that A) define a Point structure variable named center B) assign 12 to the x member of center C) assign 7 to the y member of center D) display the contents of the x and y members of center
Problem 16
A(n) _________ is required after the closing brace of a structure declaration.
Problem 18
The _________ operator allows you to access structure members.
Problem 37
True or False A structure declaration does not define a variable.
Problem 47
True or False A function may return a structure.
Problem 50
True or False The structure pointer operator does not automatically dereference the structure pointer on its left.
Problem 51
True or False In a union, all the members are stored in different memory locations.