I'm trying this:
char info[50];
myfile.getline(info, sizeof(info) );
double my_double = atof(info);
It seems to work, I think, but I'm getting an error when I try to print out the double. It says no matching function for ostream& << &double.
Can anyone help me with this?