int puts(const char *s); char Lstr[14] = "hello, world!"; // length of string + 1 (string + zero byte) int main() { puts(Lstr); }