working on a program that reads names, majors, and grades, etc from a student record txt file
the names are all in the format Lastname, Firstname
if i want to store first and last names in variables of their own by doing, for examples, inFile >> last; (last being a c-string)
how can i change the delimiter character to be the comma rather than a white space so that last isn't stored as: "Lastname," ?