0
What does fputs() mean in C language?
1 Answer
0
I believe it behaves like puts(), but you have to specify the output stream too. It's something like: fputs(<string>, <outputStream>);
The output stream can be stdout, a file (this is usually the case) or the stderr, if I'm not mistaken.