12
char ch = '5'; int num = ch - '0';
1234
string input = "76543"; int array[30]; for (int i=0; i<input.size(); i++) array[i] = input[i] - '0';