Dev-C++
https://cplusplus.com/doc/tutorial/introduction/devcppVerkko1 2 3 4 5 6 #include <iostream> int main () { auto x = R" (Hello world!)"; std::cout << x; } Edit & run on cpp.sh Then: File -> Save As... (or Ctrl+Alt+S) And save it with some file name with a .cpp extension, such as example.cpp. Now, hitting F11 should compile and run …
C++ programming with Visual Studio Code
code.visualstudio.com › docs › languagesYou've just run your first C++ program in VS Code! The next step is to learn more about the Microsoft C/C++ extension's language features such as IntelliSense, code navigation, build configuration, and debugging using one of the Tutorials in the next section. Tutorials. Get started with C++ and VS Code with tutorials for your environment:
Dev-C++ - C++ Users
cplusplus.com › doc › tutorialTo compile and run simple console applications such as those used as examples in these tutorials it is enough with opening the file with Dev-C++ and hit F11. As an example, try: File -> New -> Source File (or Ctrl+N) There, write the following: 1 2 3 4 5 6 #include <iostream> int main () { auto x = R" (Hello world!)"; std::cout << x; }