The indirection operator (*) requires a pointer as the operand.
Example
int main (void) { int p; *p = 10; /* ERROR: Invalid Indirection */ return 0; }
Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
|
What do you think about this topic? Send feedback!
|