Q223
There is one small error in the following flip routine. Find out which line it is on. 1 void flip(int arr[], int i) 2 3 int t, init = 0; 4 while (init < i) 5 6 t = arr[init]; 7 arr[i] = arr[init] ; 8 arr[i] = t; 9 init++; 10 i--; 11 12
A.
Line 3
B.
Line 5
C.
Line 7
AnswerD.
Line 9
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board