Report Bug
Qus : Which of the following access a variable in structure b?
QusWhich of the following access a variable in structure b?

A. b->var;
B. b.var;
C. b-var;
D. b>var;


Solution
B. b.var;



Explanation
.(dot) is used to access the member of structure.



Report Bug