fork download
  1. richard@richard-VirtualBox:~/Programming/myproject$ gcc --version
  2. gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0
  3. Copyright (C) 2023 Free Software Foundation, Inc.
  4. This is free software; see the source for copying conditions. There is NO
  5. warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  6.  
  7. richard@richard-VirtualBox:~/Programming/myproject$ cat main.cpp
  8. #include <iostream>
  9.  
  10. int main()
  11. {
  12. std::cout << __cplusplus << std::endl;
  13. }
  14. richard@richard-VirtualBox:~/Programming/myproject$ g++ main.cpp -o main -std=c++23
  15. richard@richard-VirtualBox:~/Programming/myproject$ ./main
  16. 202100
  17. richard@richard-VirtualBox:~/Programming/myproject$
  18.  
  19.  
  20.  
Not running #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
Standard output is empty