Posts by Alisson Oliveira • 11 points
2 posts
-
1
votes1
answer1018
viewsQ: Convert string char* to Std:string
I have the following code: void splitstr(std::string &modulo, std::string &nmodulo, int &fk) { string frase = modulo; string aux = ""; stringstream strs; for (int i = 0; i <…
-
0
votes1
answer658
viewsQ: Is it possible to pass string from string class as pointer to function?
it is possible to pass string from string class as pointer to function? example: void separaStr(string *modulo, satring *nmodulo, *digito){}