V
V
volersawns2016-02-10 08:36:51
C++ / C#
volersawns, 2016-02-10 08:36:51

How can I find out which language version a translator supports?

How can I find out which language version a translator supports?

Answer the question

In order to leave comments, you need to log in

2 answer(s)
M
MiiNiPaa, 2016-02-10
@volersawns

Read the language standard and see how to define it.
For example, if the macro __STDC_VERSION__ has a value of at least 201112L, then the compiler supports C11, at least 199901L - C99, 199409L - C94.
If none of these macros are defined, but __STDC__ is defined - C89

I
iv_k, 2016-02-10
@iv_k

if you have a question about C / C ++, then in the documentation for the compiler

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question