The compiler says something like conversion failed from char* to int. I'm not sure why but it's related to the function deletereverse line 3 where I'm using '""'.
Top tip for the future; rather than tell us what the compiler error is like, tell us what it actually is. The exact, actual error. It will generally have a line number in it so you can identify the line of code containing the error. Programming demands precision; not just what things are like.
See that bit I've put in bold and underlined? That's meant to be a char. A single char. You appear to have created a char-pointer, pointing to a string of chars, which is this: ''
That's two chars in the string. What are you trying to do?
The complier is expecting a single char; you're giving it a char-pointer to a string of chars. A char-pointer is not the same thing as a char.
Alright. It makes sense. I have a string (a for apple 'n' b for ball). How would I delete the ('n') two char character quotation marks n get a string such as (a for apple n b for ball). Thanks you. This helped me understand about char.