I need to convert my string into int array. so i make a loop over string, and call int atoi(char *p)
function from stdlib.h
, but it doesn`t working on mac (some times ago i tryed it on Windows, and it workong well). simple loop:
for(p = buff; *p; p++)
printf("%d", atoi(p));
whats the problem with work of this function, u think?