Vidyalelo
Data Structure · Q159

Arrays in Data Structures

Programming · Data Structure · question 159

Q159

What will be the output of the following code ? #include using namespace std; void func(int arr[], int left, int right) if (left >= right) return; int temp = arr[left]; arr[left] = arr[right]; arr[right] = temp; func(arr, left + 1, right - 1); void printArray(int arr[], int size) for (int i = 0; i < size; i++) cout << arr[i] << " "; int main() int arr[] = 1,2,3,4; int n = sizeof(arr) / sizeof(arr[0]); func(arr, 0, n-1); printArray(arr, n); return 0;

A.
1 2 3 4
B.
4 3 2 1
Answer
C.
1 4 2 3
D.
4 1 2 3

Answer: Option B

Solution

Answer: Option B
No explanation is given for this question Let's Discuss on Board