Compiler Error C2111
Visual Studio 2015
The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.
The latest version of this topic can be found at Compiler Error C2111.
pointer addition requires integral operand
An attempt was made to add a nonintegral value to a pointer using the plus ( + ) operator.
The following sample generates C2111:
// C2111.cpp
int main() {
int *a = 0, *pa = 0, b = 0;
double d = 0.00;
a = pa + d; // C2111
a = pa + b; // OK
}
Show: