User Tools

Site Tools


Sidebar

Programming Reference/Librarys

Question & Answer

Q&A is closed







c:stdio.h:fputs

fputs

    int fputs(const char *str, FILE *stream); 

Writes str, to (output) stream stream. Returns non-negative on success or EOF on error.

C Sourcecode Example

/* 
 * fputs example code
 * http://code-reference.com/c/stdio.h/fputs 
 */
 
 
#include <stdio.h> /* including standard library */
//#include <windows.h> /* uncomment this for Windows */
 
int main( void )
{     
  FILE *stream;
 
  if((stream=fopen("test.txt","w"))==NULL) {
    printf("Cannot open file for writing.\n");
    return 1;
  }
 
  fputs("Test 1234", stream);
  fclose(stream);
 
  return 0;
}

fputs output example

  output: ./fputs

content of test.txt

Test 1234

on the occasion of the current invasion of Russia in Ukraine

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

Impressum Datenschutz