Hey!
Does anyone know how to convert strings to doubles in c++?
Ive tried searching the forum but found no previous questions relating to this.
Cheers guys
This is a discussion on converting strings to ints within the C++ Programming forums, part of the General Programming Boards category; Hey! Does anyone know how to convert strings to doubles in c++? Ive tried searching the forum but found no ...
Hey!
Does anyone know how to convert strings to doubles in c++?
Ive tried searching the forum but found no previous questions relating to this.
Cheers guys
atof() and then cast float to double.
Thanks mate!
I think atof() returns a double.