g++ helloworld.cpp # ou g++ helloworld.c pour un fichier C
g++ -std=c++11 helloworld.cppPour des fonctionnalités C++14 :
g++ -std=c++14 helloworld.cpp
./a.out < entree.in
g++ helloworld.cpp -o helloworld # pour compiler
./helloworld < entree.in # pour exécuter
javac HelloWorld.java
java HelloWorld < entree.in