• [^] # Re: Bravo !

    Posté par . En réponse à la dépêche Sortie du noyau Linux 2.6.22. Évalué à -1.


    #include <stdio.h>

    void affiche_bravo(void);

    int main(void)
    {
    affiche_bravo();
    return 0;
    }

    void affiche_bravo(void)
    {
    puts("Bravo! Tres belle news! Felicitation!");
    affiche_bravo();
    }

    Mpf.