/* La Majorité */ #include #include int est_majeur(int); int main() { int age; printf("Quel est votre âge ? "); scanf("%d", &age); if (est_majeur(age) == 1) { printf("Vous êtes donc majeur.\n"); } else { printf("Vous êtes mineur.\n"); } return 0; } int est_majeur(int age) { if (age >= 18) { return 1; } return 0; }