Could someone help me understand the syntax of functions on the refernce pages? e.g.
The atoi() reference page has this underneath the title,
int atoi ( const char * str );
In order to convert the string to an interger variable I understand that I can simply stick the string variable into the brackets and assign it to an integer variable, i.e.
it tells you that svariable must have the type constchar * or a type that is implicitly convertible to constchar * (which includes char*, constchar[N], char[N]).
The function call won't compile if svaraible is anything else (e.g. int or std::string)