Re: [amusement] Petit Hello, World!

Top Page

Reply to this message
Author: serge rouveyrol
Date:  
To: Lucas Nussbaum
CC: guilde
Subject: Re: [amusement] Petit Hello, World!
Le lundi 21 avril 2003 a 12:31:13, Lucas Nussbaum a ecrit :
> >     Créer un programme Hello, World!, le plus petit possible. Le
> >     programme doit afficher Hello, World! à l'écran quand il est
> >     appelé sans arguments. Il doit ensuite se terminer en renvoyant
> >     au shell un code de retour de zéro. Tout ça sous Linux,
> >     évidemment !

>
> $ cat hello.c
> int main(void)
> {
>    printf("Hello, World\n");
>    return 0;
> }

>
> $ diet -Os gcc -s -o hello hello.c
>
> $ wc -c hello
>     716 hello

>
> $ ./hello && echo ok
> Hello, World
> ok
> ..


int main(int argc, char * argv[])
{
printf("%s\n",argv[0]);
return 0
}

diet -Os gcc -s -o 'Hello, World' hello.c

PARH=$PATH:.;Hello\,\ World\!