TheAlgorithms-C/exercism/hello_world/hello_world.c

11 lines
202 B
C
Raw Normal View History

2018-01-25 05:24:43 +08:00
#include "hello_world.h"
2018-01-27 02:38:12 +08:00
#include <stdlib.h>
#include <string.h>
2018-01-25 05:24:43 +08:00
const char *hello(void)
{
char *ans = strdup("Hello, World!");
2018-01-25 05:24:43 +08:00
/* string is pointer of the first character */
return ans;
2018-01-25 05:24:43 +08:00
}