TheAlgorithms-C/exercism/hello_world/hello_world.c

11 lines
202 B
C
Raw Normal View History

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