I couldn't assign int variables into char[]
array
I tried type casting, but it didn't work as I expected
the complier keeps return me ASCII value which I didn't want them. I want the numbers the actual number
char[] char_array = new char[10];
for(int i = 0; i < 10; i ++)
{
int calculation = i * (d - 1);
char_array[i] = (char) calculation;
}
After print out
It gives me something like this
| B @ #