The title given to this article is incorrect due to technical limitations. The correct title is atoi().
This function, its name short for "ascii to integer," parses a string argument into its integer representation.
int myInt = atoi( "42" );
Categories: Helpers | Functions