Atoi(): Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
TomEdwards (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
{{wrongtitle|title=atoi}} | {{wrongtitle|title=atoi()}} | ||
This function, its name short for "'''a'''scii '''to''' '''i'''nteger," parses a string argument into its [[integer]] representation. | |||
This function, | |||
== Usage == | |||
int myInt = atoi( "42" ); | |||
[[Category:Helpers]] | [[Category:Helpers]] | ||
[[Category:Functions]] | [[Category:Functions]] |
Revision as of 13:05, 21 April 2008
Template:Wrongtitle This function, its name short for "ascii to integer," parses a string argument into its integer representation.
Usage
int myInt = atoi( "42" );