Name: Anonymous 2010-09-03 9:01
The unary * operator denotes indirection, and returns the object or function to which its operand points. It is an lvalue if the operand is a pointer to an object of arithmetic, structure, union, or pointer type. If the type of the expression is ``pointer to T," the type of the result is T.
How would you interpret the bold lines. Please post examples.
Does it says that * has an idempotent property?