Skip to content

Latest commit

 

History

History
25 lines (21 loc) · 482 Bytes

compiler-error-c2100.md

File metadata and controls

25 lines (21 loc) · 482 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Error C2100
Compiler Error C2100
11/04/2016
C2100
C2100
9ed5ea11-9d55-4ddf-8b1a-162c74f3c390

Compiler Error C2100

illegal indirection

Indirection operator ( * ) is applied to a nonpointer value.

The following sample generates C2100:

// C2100.cpp
int main() {
   int r = 0, *s = 0;
   s = &r;
   *r = 200;   // C2100
   *s = 200;   // OK
}