illegal indirection
Indirection operator ( * ) is applied to a nonpointer value. The following sample generates C2100:
void main() { int r = 0, *s = 0; *r = 200; // C2100 // try // *s = 200; }