Actualiser main.c

This commit is contained in:
bastien 2025-03-31 13:38:48 +00:00
parent 98e8f30ced
commit 9b1e6a43e5

12
main.c
View File

@ -35,12 +35,12 @@ curs = 0;
}
return curs;
}
 
int main()
{
    int choix;
    choix = Choisir();
    Locate(0,3);
    printf("Vous avez choisi : %s\n",(choix==0)?"Oui":"Non");
    return 0;
int choix;
choix = Choisir();
Locate(0,3);
printf("Vous avez choisi : %s\n",(choix==0)?"Oui":"Non");
return 0;
}