int puts ( const char * str );
12345678
/* puts example : hello world! */ #include <stdio.h> int main () { char string [] = "Hello world!"; puts (string); }