User Tools

Site Tools


c:stdio.h:fputchar

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

c:stdio.h:fputchar [2024/02/16 01:05] (current)
Line 1: Line 1:
 +<code c>
 +int fputchar( int c );
 +</code>
  
 +=== description ===
 +The fputchar() function writes the character specified by the argument c to the output stream stdout. This function is identical to the putchar() function. 
 +
 +===== example =====
 +<code c>
 +#include <stdio.h>
 +
 +int main( void )
 +  {
 +    FILE *fp;
 +    int c;
 +
 +    fp = fopen( "file.txt", "r" );
 +    if( fp != NULL ) {
 +      c = fgetc( fp );
 +      while( c != EOF ) {
 +        fputchar( c );
 +        c = fgetc( fp );
 +      }
 +      fclose( fp );
 +    }
 +  }
 +</code>

on the occasion of the current invasion of Russia in Ukraine

Russian Stop this War
c/stdio.h/fputchar.txt · Last modified: 2024/02/16 01:05 (external edit)

Impressum Datenschutz