Pointer to Member Operators
Educate yourself about accessing the structure members using pointer to member operators.
We'll cover the following...
We'll cover the following...
Problem
Write a program to access the struct members using the pointer to member operators .* and ->*.
Sample run
Here’s what you should see when you run the program.
10 3.14
10 3.14
20 6.28
20 6.28
30 9.22
40 7.33
60 8.88
Coding solution
Here is a solution to the problem above.
Explanation
To carry out the access and the ...