Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Microsoft C - <b>fputchar() write a character to stdout</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
fputchar()               Write a Character to Stdout

 #include   <stdio.h>

 int        fputchar(c);
 int        c;                           Character to be written

    fputchar() writes a single character to 'stdout'.

    Returns:    The character written, if successful.  EOF is returned to
                indicate an error.  Since EOF is a legitimate integer
                value, use ferror() to verify an error condition.

      Notes:    fputchar() is equivalent to fputc(c,stdout).

                fputchar() is similar to putchar(), but the latter is a
                macro, while fputchar() is a function.

  -------------------------------- Example ---------------------------------

    The following statements print the alphabet on the screen.

         #include <stdio.h>

         int x;

         main()
         {
             for (x = 65; x < 91; x++)
                 fputchar(x);
         }

See Also: fputc() putchar() putc() fgetc() fgetchar()

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson