How to check if compiler is C++14 with C++

1 Answer

0 votes
#include <iostream>
 
int main() {
    #if __cplusplus==201402L
        std::cout << "Compiler is C++14" << std::endl;
    #elif __cplusplus==201103L
        std::cout << "Compiler is C++11" << std::endl;
    #else
        std::cout << "C++" << std::endl;
    #endif
}
 
 
 
 
/*
run:
 
Compiler is C++14
 
*/

 



answered Apr 22, 2022 by avibootz
edited Apr 22, 2022 by avibootz

Related questions

1 answer 198 views
198 views asked Apr 22, 2022 by avibootz
1 answer 141 views
141 views asked Apr 22, 2022 by avibootz
1 answer 153 views
153 views asked Apr 22, 2022 by avibootz
1 answer 238 views
1 answer 171 views
2 answers 221 views
...