Similar to the built-in data types, Structure members can be accessed
through pointers and references. To access members using pointers, the
-> operator is utilized. For example:
employee Bill, *empPtr;
empPtr = &Bill;
empPtr->salary = 50000;
empPtr->job_code[i] = 'X';
is equivalent to the previous code using the . (dot) operator