Skip to main content

16 docs tagged with "Language"

View All Tags

Diagnostic directives

Shows the given error message and renders the program ill-formed, or shows the given warning message without affecting the validity of the program.

Escape sequences

Escape sequences are used to represent certain special characters within string literals and character literals.

Floating-point literal

Floating-point literal defines a compile-time constant whose value is specified in the source file.

Integer literal

Allows values of integer type to be used in expressions directly.

Operators

Customizes the C++ operators for operands of user-defined types.

Preprocessor

The preprocessor is executed at translation phase 4, before the compilation. The result of preprocessing is a single file which is then passed to the actual compiler.

Replacing text macros

The preprocessor supports text macro replacement. Function-like text macro replacement is also supported.

Source file inclusion

Includes other source file into current source file at the line immediately after the directive.

16 docs tagged with "Language"

View All Tags

Diagnostic directives

Shows the given error message and renders the program ill-formed, or shows the given warning message without affecting the validity of the program.

Escape sequences

Escape sequences are used to represent certain special characters within string literals and character literals.

Floating-point literal

Floating-point literal defines a compile-time constant whose value is specified in the source file.

Integer literal

Allows values of integer type to be used in expressions directly.

Operators

Customizes the C++ operators for operands of user-defined types.

Preprocessor

The preprocessor is executed at translation phase 4, before the compilation. The result of preprocessing is a single file which is then passed to the actual compiler.

Replacing text macros

The preprocessor supports text macro replacement. Function-like text macro replacement is also supported.

Source file inclusion

Includes other source file into current source file at the line immediately after the directive.