I'm trying to make it so that the user of a program can delete a file depending on the number the enter. If the user enters 1, the code would check if "file1.txt" exists and then delete it. However, I'm getting an error "'int remove(const char *)': cannot convert argument 1 from 'std::string' to 'const char *'". I'm confused as to how I can make it so remove() will work with strings. Help is appreciated!