Determine Whether a C or C++ Compiler Was Used to Compile Code

Determine Whether a C or C++ Compiler Was Used to Compile Code

The code below contains standard, pre-defined macros used at runtime to determine whether a C or C++ compiler was used to compile the code. For C compilers, it also determines the version of the C language standard that the compiler implements).

NOTE: Some people prefer to use STDC_HEADERS rather than __STDC__..

#ifdef __cplusplus printf("C++ compiler
");#else#ifdef __STDC__#if (defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L)) ||/*continue..    ...on the next line */ (defined(__GNUC__) && !defined(__STRICT_ANSI__)) printf("ANSI X3.159-1999 / ISO 9899:1999 (C99) compiler
");#else printf("ANSI X3.159-1989 (C89) / ISO/IEC 9899:1990 (C90) C compiler
");#endif#else printf("Pre-ANSI (K&R) C compiler
");#endif#endif

The code below determines whether a C or C++ compiler was used to compile the code at runtime:

if (sizeof('c') != sizeof(int)) printf("C++ compiler
");else if ((unsigned char)1 < -1)	printf("Pre-ANSI (K&R) C compiler
");else { int i;	i = 1 //* */ +1;if (i == 2) printf("ANSI X3.159-1999 / ISO 9899:1999 (C99) compiler
");else printf("ANSI X3.159-1989 (C89) / ISO/IEC 9899:1990 (C90) C compiler
");}

Share the Post:
Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular

XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved

AI is revolutionizing fraud detection

How AI is Revolutionizing Fraud Detection

Artificial intelligence – commonly known as AI – means a form of technology with multiple uses. As a result, it has become extremely valuable to a number of businesses across

AI innovation

Companies Leading AI Innovation in 2023

Artificial intelligence (AI) has been transforming industries and revolutionizing business operations. AI’s potential to enhance efficiency and productivity has become crucial to many businesses. As we move into 2023, several