15 lines
187 B
C
15 lines
187 B
C
// Prompts user for n.
|
|
|
|
#include <cs50.h>
|
|
#include <stdio.h>
|
|
|
|
int main(void)
|
|
{
|
|
int n = get_int("What's n? ");
|
|
|
|
for (int i = 0; i < n; i++)
|
|
{
|
|
printf("meow\n");
|
|
}
|
|
}
|