• atoi problems
    I am having problems getting atoi to work. here is how I populate the comin[] array do { comin[index] = (getchar()); ++index; } while (index<=4); later in the program I do the following...
  • atoi, strol functions problems
    Hello, I work with LPC2148 and RealView Compiler. I have noticed that if I convert a string with the atoi function, the result never is correct. If the value of the number in the string is...
  • RE: atoi problems
    I am using version 9. An occasional life saver.
  • atoi and int value into unsigned char
    Can i store a int into a char if result is less than 255 ? or i need to store only the lower byte? unsigned char mychar[10]; unsigned int intvalue; intvalue = 1000; intvalue = 1000 - 950;//value...