Portable and easy to use editor to write and test C++11/14/17/20 snippets.
F9
key to compile C++ filesCtrl+F9
to execute the compiled programF4
/Ctrl+F4
to go to next/previous compiler errorSee FAQ for installation instructions and more.
.cpp
file must be self-contained (it must contain a main()
function),-std=c++2a
flag with gcc 9.2.0-static
) is used to generate the output (.exe
file), in this way it doesn't depend on external .dll
(e.g. C++
runtime)..cpp
files and to
use third party libraries like Boost and SDL (which are already
included in the Pocket C++ distribution).Pocket C++ looks like (is) Notepad++
You can press F9 to compile your .cpp files. If there are compilation errors you can double-click them to go to the specific line.
You can press Ctrl+F9 to execute the compiled program