Accessing structure members
Accessing structure members If you want to access the structure members individually in the C program, then you can use the dot (.) operator in the structure to work directly with the declared structure variable. Similarly, when you use pointers in the structure, you call the structure members using the arrow (->) operator. So let's…
