if a constant is declared like this
const char *http_range;
then how can I write the content or the value of it in a text file? Could you please show me with syntax?
|
|
First, that is not "a constant". It's a pointer to constant character data, i.e. a pointer to a read-only string. You can change the pointer, but you can't change the data it's pointing at. For example:
Note that the above is in C, your question is weirdly double-tagged so I picked C. |
|||||||||||
|
|
In C++ following code will write value in test.txt
|
|||
|
|