w3resource

C Exercises: Create a new array of length 3 from a given array containing the elements from the middle of the array


49. Extract Middle Subarray of Length 3

Write a C program to create an array of length 3 from a given array (length at least 3) containing the elements from the middle of the array.

C Code:

#include <stdio.h>
#include <stdlib.h>

// Function prototype for 'print_array'
void print_array(int parray[], int size);

int main(void){
    // Declaration of variables
    int arr_size1; // Size of the original array
    int nums1[] = { 1, 5, 7, 9, 11, 13 }; // Declaration and initialization of the original array 'nums1'

    // Calculating the size of the original array
    arr_size1 = sizeof(nums1)/sizeof(nums1[0]);

    // Printing elements in the original array
    printf("Elements in original array1 are: ");  
    print_array(nums1, arr_size1);

    // Creating a new array with three elements from the middle of the original array
    int result[] = { nums1[arr_size1 / 2 - 1], nums1[arr_size1 / 2], nums1[arr_size1 / 2 + 1]} ;

    // Printing elements in the new array
    printf("New array: ");  
    print_array(result, 3);        
}  

// Definition of the 'print_array' function
void print_array(int parray[], int size)
{
    int i;      
    for( i=0; i<size-1; i++)  
    {  
        // Printing each element with a comma and a space
        printf("%d, ", parray[i]);  
    } 
    // Printing the last element without a comma and space
    printf("%d ", parray[i]);  
    // Printing a new line to separate the elements
    printf("\n");   
}

Sample Output:

Elements in original array1 are: 1, 5, 7, 9, 11, 13 
New array: 7, 9, 11

Pictorial Presentation:

C Programming Algorithm: Create a new array of length 3 from a given array containing the elements from the middle of the array.

Flowchart:

C Programming Algorithm Flowchart: Create a new array of length 3 from a given array containing the elements from the middle of the array.

For more Practice: Solve these Related Problems:

  • Write a C program to extract a subarray of length 4 from the middle of a given array.
  • Write a C program to form a new array using the first, middle, and last elements of a given array.
  • Write a C program to create a subarray containing the two central elements from an odd-length array.
  • Write a C program to extract a subarray of length 3 from an array by skipping one element between selections.

Go to:


PREV : Swap First and Last in Array.
NEXT : Largest Among Extremes.

C Programming Code Editor:



What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.