I have an assignment from school and have to read a comma delimited file and put each value in to a char*.
Ex)
File contains:
5,Justin,19,123-4567,etc..
char * firstValue = 5;
char * secondValue = Justin;
char * thirdValue = 123-4567; etc..
I cannot use std::string since we haven't learned it yet. I am supposed to do it with ifstream or other file streams. I have no idea how to do this