C
This commit is contained in:
11
charfunc.c
Executable file
11
charfunc.c
Executable file
@ -0,0 +1,11 @@
|
||||
#include <stdio.h>
|
||||
|
||||
void myFunc(char name[], int age) {
|
||||
printf("Hello %s. You're %d years old\n", name, age);
|
||||
}
|
||||
|
||||
int main() {
|
||||
myFunc("Liam", 3);
|
||||
myFunc("Ahmet", 30);
|
||||
return 0;
|
||||
}
|
Reference in New Issue
Block a user