954,480 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

convert string to integer

aside from itoa function, is there any other way to convert a string to an integer? itoa function won't work in my compiler.

cmsc
Light Poster
45 posts since Oct 2009
Reputation Points: 10
Solved Threads: 0
 

itoa is not an ANSI/ISO standard function and is non-portable, also it converts an integer to a string not a string to an integer.

Try atoi or strtol

Banfa
Practically a Master Poster
600 posts since Mar 2010
Reputation Points: 486
Solved Threads: 92
 

thank you, I'll try that

cmsc
Light Poster
45 posts since Oct 2009
Reputation Points: 10
Solved Threads: 0
 

This question has already been solved

Post: Markdown Syntax: Formatting Help
You