Multiple Choice
If pt is declared as a pointer to a structure of type Employee, ____ refers to the idNum member of the structure.
A) (*pt) .idNum
B) *pt.idNum
C) *(pt.idNum)
D) (*pt.) idNum
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q23: A(n) _ is a data type that
Q24: The -> operator has a lower priority
Q25: A union reserves sufficient memory locations to
Q26: _ is equivalent to (*pointer).member.<br>A)pointer.member<br>B)pointer>member<br>C)pointer->member<br>D)pointer@member
Q27: A structure definition statement is identical to
Q29: After the following declaration, you can define
Q30: _ creates an array of 10 PayRecord
Q31: A structure may be declared globally or
Q32: When passing a structure to a function,
Q33: Arrays of structures are very useful to