Happy About the progress
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
// Abstraction with parameterization
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
void meow(int n);
|
||||
|
||||
int main(void)
|
||||
{
|
||||
meow(3);
|
||||
}
|
||||
|
||||
// Meow some number of times
|
||||
void meow(int n)
|
||||
{
|
||||
for (int i = 0; i < n; i++)
|
||||
{
|
||||
printf("meow\n");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user