RAD Studio
ContentsIndex
PreviousUpNext
E2062: Invalid indirection

The indirection operator (*) requires a pointer as the operand. 

Example  

int main (void)
{
  int p;
  *p = 10;     /* ERROR: Invalid Indirection */
  return 0;
}
Copyright(C) 2008 CodeGear(TM). All Rights Reserved.
What do you think about this topic? Send feedback!