Je suis tombé par hazard sur ce bout de code : Je trouve ça très drôle, comme concept... le programme auto-suicidaire...
#include <unistd.h>
#include <signal.h>
#include <stdlib.h>
#include <stdio.h>
/*
* is this the stupidest code all over the world ?
* or any student first system call code ?
*
*/
int main(int argc, char *argv[])
{
if (argc != 2)
{
// if the fucking user doesn't give a signal code on args, then kill -9 program
kill(getpid(),
(…)