Files
CS50---Harvard/src1/cat13.c
T
2026-05-28 10:16:10 +00:00

21 lines
230 B
C

// Demonstrates scope
#include <stdio.h>
void meow(int n);
int main(void)
{
int n = 3;
meow(n);
}
// Meow some number of times
void meow(int n)
{
for (int i = 0; i < n; i++)
{
printf("meow\n");
}
}