int puts(const char *s); char Lstr[] = "hello, world!"; // array size determined by initializer int main() { puts(Lstr); }