Hi
I would like to save integer values from 0 to n ( n = 112 e.g.) to a char array. How can I do this?
char numbers[n];
for (int i = 0; i<= n; i++)
{
numbers[i] = i // or numbers[i] = 'i'; when I write code like this, the value that is
// recorded in numbers will be ASCII equivalent of i. But I would like to
// record i not ASCII equivalent. How can I do this.
}