+ 1
Need a c++ function to which a string is passed and it returns a copy of the passed without the first character.
the function should work in turbo c ++ eg input - abc returned output - bc (this all can be done by substr function but that doesn't work in turbo c++ )
3 Antworten
+ 2
Why do they still force you to use Turbo C++? Nothing seems to work with it 🤔
+ 2
You could use a char array,pass it to a function,remove the first index then concate the remaining indexes...
+ 1
can you plz provide me the code