Respuesta :

A structure pointer contains the address of a structure variable.

What is a structure pointer?

A structure pointer is a pointer that points to the address of a memory block that contains the structure that bears its name. With the use of structure pointers, complex data structures such as linked lists, trees, graphs, etc. are built.

How are pointers used with structures?

The -> operator is used to access members of a structure via pointers. In this example, personPtr = In this example, personPtr = &person1
its used to store the address of person1 in the pointer. Utilizing the personPtr pointer, you can now access the members of person1.

To know more about structure pointer visit-

brainly.com/question/15398943

#SPJ1

The Given Question is incomplete
The Complete question is-

18) A structure pointer contains ________.

A) the address of a structure variable

B) the dereferenced address of a structure tag

C) the name and address of the structure tag

D) the address of a structure tag

E) None of these