Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 570 Bytes

compiler-error-c2018.md

File metadata and controls

31 lines (24 loc) · 570 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Error C2018
Compiler Error C2018
11/04/2016
C2018
C2018
86b54573-dca0-4446-be1a-e3ac489c073b

Compiler Error C2018

unknown character 'hexnumber'

The source file contains an unexpected ASCII character, which is identified by its hex number. To resolve the error, remove the character.

The following sample generates C2018:

// C2018.cpp
int main() {
   @   // C2018
}

Possible resolution:

// C2018b.cpp
int main() {

}