Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,895 questions

51,826 answers

573 users

How to get the current runtime version in C++

1 Answer

0 votes
#include <iostream>

int main() {
    if (__cplusplus == 199711L) {
        std::cout << "C++98 or C++03" << std::endl;
    } else if (__cplusplus == 201103L) {
        std::cout << "C++11" << std::endl;
    } else if (__cplusplus == 201402L) {
        std::cout << "C++14" << std::endl;
    } else if (__cplusplus == 201703L) {
        std::cout << "C++17" << std::endl;
    } else if (__cplusplus == 202002L) {
        std::cout << "C++20" << std::endl;
    } else if (__cplusplus > 202002L) {
        std::cout << "C++23 or later" << std::endl;
    } else {
        std::cout << "Unknown C++ version" << std::endl;
    }
}



/*
run:

C++17

*/

 



answered Jul 2, 2025 by avibootz

Related questions

2 answers 79 views
2 answers 68 views
2 answers 89 views
2 answers 94 views
1 answer 75 views
3 answers 78 views
...