User profile: codeback99

User info
User name:codeback99
History
Joined:
Number of posts:57
Latest posts:

recursive problem
that is really helpful thak you cire

recursive problem
i tried int and * but not sure

recursive problem
oh ok so how do u write for the return sub(temp,begin+1,end) + temp[begin] part?

recursive problem
yea i know... i just minimize the cout string x = "123"; cout << sub(x,0,x.size()-1)<<endl; if you...

recursive problem
[code]int sub(string &temp,int begin,int end){ if(end-begin == 0){ return temp[begin]; ...