11 lines
140 B
C
11 lines
140 B
C
#include <stdio.h>
|
|
|
|
void greet(const char *name) {
|
|
printf("Hello, %s!\n", name);
|
|
}
|
|
|
|
int main(void) {
|
|
greet("moon");
|
|
return 0;
|
|
}
|