12 lines
164 B
C++
12 lines
164 B
C++
|
#include <iostream>
|
|||
|
|
|||
|
/**
|
|||
|
* Выводит версию C++
|
|||
|
*/
|
|||
|
|
|||
|
int main() {
|
|||
|
std::cout << "C++ version: " << __cplusplus << std::endl;
|
|||
|
|
|||
|
return EXIT_SUCCESS;
|
|||
|
}
|