Examveda

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

D. Line 9

Answer: Option C


This Question Belongs to Data Structure >> Sorting Algorithms

Join The Discussion

Related Questions on Sorting Algorithms