Examveda

Which of the following is an 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: Option A


This Question Belongs to C Program >> Structure And Union

Join The Discussion

Related Questions on Structure and Union