// Prompts user for n. #include #include int main(void) { int n = get_int("What's n? "); for (int i = 0; i < n; i++) { printf("meow\n"); } }