Atoi(): Difference between revisions
Jump to navigation
Jump to search
TomEdwards (talk | contribs) No edit summary |
mNo edit summary |
||
Line 1: | Line 1: | ||
{{ | {{DISPLAYTITLE:atoi()}} | ||
This function, its name short for "'''a'''scii '''to''' '''i'''nteger," parses a string argument into its [[integer]] representation. | This function, its name short for "'''a'''scii '''to''' '''i'''nteger," parses a string argument into its [[integer]] representation. | ||
Latest revision as of 01:15, 30 November 2011
This function, its name short for "ascii to integer," parses a string argument into its integer representation.
Usage
int myInt = atoi( "42" );