1
2
3
4
5
6
7
8
9
int puts(const char *s);

char Lstr[] = "hello, world!"; // array size determined by initializer

int
main()
{
    puts(Lstr);
}