What change can i make to Line 14 so that the value displayed by the cout at Line 19 is 96?
12 char f1(char a) {
13 if (a < 'a') return a;
14 else f1(a - 1);
15 } // end f1
16 int main (int argc, char **argv)
17 {
18 char reply;
19 cout << (int)f1('a') << endl;
help me please!!!!
