Hi,
So as we all probably know, the atoi
converts a char to a number. But, what do you do if you only want one of the array elements instead of the whole array?
Please look at the following:
for (h = 0; h < 5; h++)
{
num[h] = atoi(temp[h]);
}
Assume that num is an array of type int
and that temp is and array of type char
. This gives me one of those annoying conversion problems:
Invalid conversion from 'char' to 'const char *'
Any suggestions on how to convert a single element of a char array to an int using atoi?