Question: For the above code, when program running to the break point, what value will be in letter[3]: A. 'b' B. 'f' C. 'j' D. 'h'

For the above code, when program running to the break point, what value will be in letter[3]:
| A. | 'b' | |
| B. | 'f' | |
| C. | 'j' | |
| D. | 'h' |
4 int main() { 5 char letters [10] { 'c', 'b', 'b', 'a', 'f', 'a', 'k', 'h', 'j', 'j' }; 6 //int outside LoopIndex, insideLoopIndex, temp; 7 int i, j, temp; //i is for outside loop index and j is for inside loop index 8 //Bubble Sort 9 for (i = 0; i
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
