/* Compte à rebours */ #include #include #include void compte_a_rebours(int); int main() { int nombre; printf("Donnez un nombre entier pour le compte à rebours : "); scanf("%d", &nombre); compte_a_rebours(nombre); return 0; } void compte_a_rebours(int nombre) { for (int i = nombre; i > 0; i--) { printf("%d\n", i); sleep(1); } printf("Boom !\n"); }