{{tag>Brouillon Dev C}} # Langage C sans compiler - Script en C ## Classique `hello.c` ~~~c #include int main(void) { puts("Hello world !"); return 0; } ~~~ ~~~ gcc hello.c ./a.out ~~~ ~~~ Hello world ! ~~~ ## Autre façon ~~~bash sudo apt-get install tcc ~~~ ~~~bash tcc -run hello.c ~~~ Ou encore on peut ajouter un [Shebang](https://fr.wikipedia.org/wiki/Shebang) mais le fichier ne sera plus conforme au langage C. `hello.c` ~~~c #! /usr/bin/tcc -run #include int main(void) { puts("Hello world !"); return 0; } ~~~