1.

Which of the following are incorrect syntax for pointer to structure? (Assuming struct temp{int b;}*my_struct;)

A. *my_struct.b = 10;
B. (*my_struct).b = 10;
C. my_struct->b = 10;
D. Both *my_struct.b = 10; and (*my_struct).b = 10;
Answer» B. (*my_struct).b = 10;


Discussion

No Comment Found