Quoted By:
I cannot figure this out and I've been working on it all night. I feel retarded. I usually never struggle with C++, yet I keep screwing this up.
I just need to take an input string, split it using the separator character argument, then store those chopped-up strings into an array. I would post the method that I have, but I'm honestly embarrassed by it.
Could you help me with this? It can be in pseudocode; I just can't properly get the input string to be chopped up properly.
int split(string input_string, char separator, string arr[], const int ARR_SIZE){
//write split function
}