Programming Reference/Librarys
Question & Answer
Q&A is closed
int fputs(const char *str, FILE *stream);
Writes str, to (output) stream stream. Returns non-negative on success or EOF on error.
/* * 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; }
output: ./fputs
content of test.txt
Test 1234