#include "hello_world.h" #include <stdlib.h> #include <string.h> const char *hello(void) { char *ans = strdup("Hello, World!"); /* string is pointer of the first character */ return ans; }
© The Algorithms 2022