c-uebungen/Assignment_005/solution/greeter.c

7 lines
108 B
C
Raw Permalink Normal View History

2023-05-21 21:10:46 +02:00
#include "greeter.h"
#include <stdio.h>
void greet(const char* name) {
printf("Hello, %s.\n", name);
}