I have a value wich max value is dificcult to value more than 100, so a char is the right type.
But when I use it inside a vector it is not used as numeric but a character and the program chrash.
It is simply:
char my_value;
my_value=98
vector[my_value].....
How I fix this ?
Thanks