+1
How do you return a string in c++?
9/29/2018 4:55:36 PM
1 Answer
+3
create a function with a data type string. Eg. string Reverse(string wrd,int Len) { // some code here return wrd; }
Send us a message