Dear all,
In order to creation a formatted file, I want to utilize fprintf. it must get char* but I have several string variables. Can anyone help me, please?
Thanks
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
The basic usage of
You can add several strings by using several If you have C++
|
||||
|
|
|
fprintf with multiple strings is pretty simple, if that is what you are after, e.g.
|
||||
|
|
fprintf works analogous to printf, in the format specifier, you can mention as many %s as you want and give the corresponding number of string arguments. If you want a more detailed answer, please post your code. |
|||
|
|