{{keywords>wiki library source code example reference}}
====== 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 /* including standard library */
//#include /* 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