Skip to content

defined

The defined is a keyword used for conditional preprocessor statements.

Syntax

defined(_AMD64_)

Example Code

#if defined(_AMD64_)
// ...
#elif defined(_ARM64_)
// ...
#endif