5 lines
89 B
C++
5 lines
89 B
C++
#include <cstdio>
|
|
void printhello(const char *name) {
|
|
printf("hello %s \n", name);
|
|
}
|