Compiler Error C2013
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 C2013.
missing '>'
An #include directive lacks a closing angle bracket. Add the closing bracket to resolve the error.
The following sample generates C2013:
// C2013.cpp #include <stdio.h // C2013
Possible resolution:
// C2013b.cpp // compile with: /c #include <stdio.h>
Show: