E2323 Illegal number suffix (C++)

From RAD Studio
Jump to: navigation, search

Go Up to Compiler Errors And Warnings (C++) Index

A numeric literal is followed by a suffix that is not recognized by the compiler.

Example:

int i = 1234i15;   // Error: no i15 suffix
int j = 1234i16;   // OK