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