{{tag>Brouillon Dev C}} # Script en C Tester un bout de code c sans le compiler grâce à TCC ~~~bash sudo apt-get install tcc ~~~ ''hello.c'' ~~~c #! /usr/bin/tcc -run #include int main(void) { puts("Hello world !"); return 0; } ~~~ ~~~bash chmod +x hello.c ./hello.c ~~~