TheAlgorithms-C/exercism/hello-world/hello_world.c

8 lines
134 B
C
Raw Normal View History

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