Operator Overload:
The operator has been used for more than one meaning.
That is, the same operator is used on the different places.
The symbol, *, is used as
-
multiply
e.g. A = B * C;
-
pointer
e.g. char * gradeprt;
-
derefernce e.g.
*gradeprt = 'A';
Click
here for Example 1.
Click
here for Example 2.