//C program to copy all the elements
//of one array to another
#include <stdio.h>

int main() 
{
    
    int a[5]={3,6,9,2,5},n=5;
    int b[n],i;

    //copying elements from one array to another
    for(i=0;i<n;i++){
        b[i]=a[i];
    }
    //displaying first array before 
    //copy the other elements from 
    //one array to other
    printf("The first array is:");
    for(i=0;i<n;i++){
        printf("%d ",a[i]);
    }
    //displaying first array after 
    //copy the other elements from 
    //one array to other
    printf("\nThe second array is:");
    for(i=0;i<n;i++){
        printf("%d ",b[i]);
    }    
    return 0;
}

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: