В традиционном C вы можете сделать:
int i = 48;
char c = (char)i;
//Now c holds the value of 48.
//(Of course if i > 255 then c will not hold the same value as i).
Какой из методов каста С++ (static_cast, reinterpret_cast) подходит для выполнения этой работы?