w3resource

C Exercises: Create a new array from two given array of integers of length 3


47. Merge Two Arrays of Length 3

Write a C program to create a new array from two given arrays of integers, each of length 3.

C Code:

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

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

int main(void){
    // Declaration and initialization of variables
    int new_arr_size = 6; // Size of the new array
    int arr_size1, arr_size2; // Sizes of the original arrays

    // Declaration and initialization of the original arrays 'nums1' and 'nums2'
    int nums1[] = {10, 20, 30};
    int nums2[] = {40, 50, 60};

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

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

    // Printing elements in the second original array
    printf("Elements in original array2 are: "); 
    print_array(nums2, arr_size2);

    // Creating a new array by combining elements from the original arrays
    int result[] = { nums1[0], nums1[1], nums1[2], nums2[0], nums2[1], nums2[2] };

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

// 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: 10, 20, 30 
Elements in original array2 are: 40, 50, 60 
New array: 10, 20, 30, 40, 50, 60

Pictorial Presentation:

C Programming Algorithm: Create a new array from two given array of integers of length 3

Flowchart:

C Programming Algorithm Flowchart: Create a new array from two given array of integers of length 3

For more Practice: Solve these Related Problems:

  • Write a C program to interleave two arrays of three integers each into one array.
  • Write a C program to merge two arrays of equal length by summing corresponding elements.
  • Write a C program to combine two arrays of length 3 into a new array, reversing the order of the second array.
  • Write a C program to concatenate two arrays of length 3 and then rotate the resulting array by one position.

Go to:


PREV : Extract Middle Elements from Even Array.
NEXT : Swap First and Last in Array.

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.