, ,

Script en C

Tester un bout de code c sans le compiler grâce à TCC

sudo  apt-get install tcc

hello.c

#! /usr/bin/tcc -run
#include<stdio.h>
 
int main(void)
{
        puts("Hello world !");
        return 0;
}
chmod +x hello.c
./hello.c