Q:

Write C program to copy all elements of one array to another

0

Write C program to copy all elements of one array to another

All Answers

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

#include <stdio.h>
#define MAX_SIZE 100 //Maximum size of the array

int main()
{
    int first[MAX_SIZE], second[MAX_SIZE];
    int i, num;

    //Enter size of array
    printf("Enter the size of the array : ");
    scanf("%d", &num);

    //Reading elements of array
    printf("Enter elements of first array : ");
    for(i=0; i<num; i++)
    {
        scanf("%d", &first[i]);
    }


   //Copy all elements from first array to second array
   for(i=0; i<num; i++)
    {
        second[i] = first[i];
    }

    //Printing all elements of first array entered by user
    printf("\nElements of first array are: \n");
    for(i=0; i<num; i++)
    {
        printf("%d\t", first[i]);
    }


    //Printing all elements of second array
    printf("\nElements of second array are: \n ");
                                for(i=0; i<num; i++)
    {
        printf("%d\t", second[i]);
    }

  return 0;
}

Result:

Enter the size of the array : 5

Enter elements of first array : 1

2

3

4

5

Elements of first array are: 

1       2       3       4       5

Elements of second array are: 

 1      2       3       4       5

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

total answers (1)

Write C program to count number of each element in... >>
<< Write C program to sort an array in ascending orde...