Q:

Write a C++ program to create an array taking two middle elements from a given array of integers of length even

0

Write a C++ program to create an array taking two middle elements from a given array of integers of length even

Sample Output:

Original array:
1 5 7 9 11 13
New array:
7 9

 

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

#include <iostream>

using namespace std;

static int *test(int numbers[], int arr_length)
          {
              static int  r_array[] = { numbers[arr_length / 2 - 1], numbers[arr_length / 2] };			 
			  return r_array;
          } 

int main () {
   int *p, i;
   int nums1[] = { 1, 5, 7, 9, 11, 13 };
   cout << "Original array:" << endl;   	
   int arr_length = sizeof(nums1) / sizeof(nums1[0]);
   for ( i = 0; i < arr_length; i++ ) {
      cout << nums1[i] << " ";
   } 
   p =  test(nums1, arr_length);
   cout << "\nNew array: " << endl;   
   arr_length = sizeof(p) / sizeof(p[0]);   
   for ( i = 0; i < arr_length; i++ ) {
      cout << *(p + i) << " ";
   } 
   return 0;
}

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now