Files
2026-06-30 07:01:23 +02:00

5 lines
89 B
C++

#include <cstdio>
void printhello(const char *name) {
printf("hello %s \n", name);
}