puts()                   Write String to Stdout
 
 #include   <stdio.h>
 
 int        puts(string);
 char       *string;                     String to be output
 
    puts() copies 'string' to the standard output stream 'stdout'. The
    string's terminating null character ('\0') is replaced with a
    new-line  character ('\n').
 
    Returns:    The last character written, which is always a new-line
                character. A return value of EOF indicates an order.
 
  -------------------------------- Example ---------------------------------
 
          #include <stdio.h>
 
          int pause;
 
          main()
          {
              puts("Press any key to proceed...");
              pause = getchar();
          }

Seealso:



This page last updated on Fri Nov 30 10:48:32 MSK 2001
Copyright © 1992-2001, Vitaly Filatov, Moscow, Russia
Webmaster