f_and_c/example3/hello_fn.c
2024-05-13 14:04:30 +08:00

7 lines
106 B
C

#include <stdio.h>
#include "hello.h"
void hello(const char* name) {
printf("Hello, %s!\n", name);
}