#include <stdio.h>
#include "countdown.h"
int main() {
int n;
do {
printf("Enter n: ");
fflush(stdout);
} while (scanf(" %d", &n) != 1);
// this calls the function YOU have to write!
countdown(n);
return 0;
}
Click here to download main.c
.
#include <stdio.h>
#include "countdown.h"
int main() {
int n;
do {
printf("Enter n: ");
fflush(stdout);
} while (scanf(" %d", &n) != 1);
// this calls the function YOU have to write!
countdown(n);
return 0;
}