g++ helloworld.cpp # ou g++ helloworld.c pour un fichier C
g++ -std=c++11 helloworld.cpp
g++ -std=c++17 helloworld.cpp
g++ -std=c++20 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
#!/usr/bin/python3puis en rendant le fichier source exécutable :
chmod +x programme.py. Il suffit alors de taper le nom du fichier en redirigeant l'entrée clavier :
./programme.py < entree.in
python3 programme.py < entree.in