Multiple choice technology programming languages Which symbol is used to access the members of a structure ** & ^ . Reveal answer Fill a bubble to check yourself D Correct answer Explanation The correct answer is D (.) - the dot operator. The dot operator is used to access members of a structure when you have the structure itself. Options: ** is not a valid operator, & is address-of, ^ is bitwise XOR (not pointer dereference in C).