Ok, I have a char that is a number. How could I convert it into a double?
char c;
I've tried (double)c, but it converts to zero.
Any ideas?
|
Ok, I have a
I've tried Any ideas? |
||||
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
if you have a null terminated string that you wish to convert to double use
If you have a single character, casting should work:
If the character is zero then it print zeros of course:
Note:
|
|||||||||||||||
|
|
To answer the question you asked:
But I suspect you really want to know how to convert a character string, like The The And as Coodey said in a comment, you need to make your question more precise. An example with actual code would have made it easier to figure out just what you're asking. |
|||
|
|
double? Make your question more precise. – Coodey Nov 16 '12 at 21:08atoi()converts a string to anint; the OP wants adouble. And it's not clear just what he's asking; see my answer. – Keith Thompson Nov 16 '12 at 21:42