mirror of
https://github.com/TheAlgorithms/C
synced 2024-11-24 22:39:52 +03:00
8 lines
134 B
C
8 lines
134 B
C
#include "hello_world.h"
|
|
|
|
const char *hello(void)
|
|
{
|
|
/* string is pointer of the first character */
|
|
return "Hello, World!";
|
|
}
|