I need to use std::string to store data retrieved by fgets(). To do this I need to convert fgets() char* output into an std::string to store in an array. How can this be done?
|
|
Just make sure that your |
||||||||||||
|
|
|
Why using |
||
|
|
|
|
If you already know size of the char*, use this instead
This doesn't use strlen. |
||
|
|
|
|
Pass it in through the constructur:
You can use the function string.c_str() to go the other way:
|
||||||
|
|
|
|
||||
|
