how does fprintf works??
if i write fprintf(outfile, "test %d %d 255/r", 255, 255);
what does it mean?? i know outfile, is the name my of output file. what would the other values mean?
|
|
|||||||||||||
|
|
|
In result you'll get string For more infrormation read fprintf reference. |
||
|
|
|
|
it's a formatted output to a file stream. It works like printf does, the difference is that printf always outputs to stdout.If you wrote
it would be the same as the The second argument to it is the format string. The format string contains format specifiers, like
likewise, you could use string specifiers ( Also, in your original example, " |
|||
|
|
|
|
The second argument is the format string. Any additional arguments are the parameters to the specifier in the format string (in this case, %d). Check out http://www.cppreference.com/wiki/c/io/printf for a good intro to printf-style functions. |
||
|
|
|
|
The first parameter is a file handle, the second is a formatting string, and after that there is a variable number of arguments depending on how many format specifiers you used in your 2nd parameter. Check the documentation, it contains all of the information you are asking. |
||
|
|
|
|
It's similar to printf, it just prints the output to a file. |
||
|
|