Ceci est une ancienne révision du document !
Tester un bout de code c sans le compiler grâce à TCC
sudo apt-get install tcc
#! /usr/bin/tcc -run #include<stdio.h> int main(void) { puts("Hello world !"); return 0; }
chmod +x hello.c ./hello.c