How does one parse an integer to string(char* || char[]) in C? Is there an equivalent String parseInt(int) method from Java in C?
|
|
If you want to convert an integer to string, try the function If you want to convert a string to an integer, try the function |
|||||
|
|
To convert an int to a string:
You can also do it for doubles:
To convert a string to an int:
See http://www.acm.uiuc.edu/webmonkeys/book/c_guide/ for the documentation of these functions. |
|||||||||
|
|
It sounds like you have a string and want to convert it to an integer, judging by the mention of To do this, use An example use of
This function fills in *i with the integer and returns 1, if the string contained a valid integer. Otherwise, it returns 0. |
|||
|
|
This is discussed in Steve Summit's C FAQs. |
|||
|
|
The Java |
|||
|
|
|
You can also check out the Also, there are functions that do the reverse as well, namely |
|||
|
|
|
You can try:
that should do the trick. |
|||
|
|
