You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

14 lines
174 B

#include <stdio.h>
void print_count(int n) {
printf("T minus %d and counting\n", n);
}
int main(void) {
int i;
for (i = 10; i > 0; --i)
print_count(i);
return 0;
}