C program to read and display the array elements

#include<stdio.h>
int main()
{
    int a[50],n;
    printf("Enter the size of the array\n");
    scanf("%d",&n);
    printf("Enter the array elements\n");
    read(a,n);
    printf("The array elements are:\n");
    display(a,n);
}

void read(int a[50],int n)
{
    int i;
    for(i=0;i<n;i++)
    {
        scanf("%d",&a[i]);
    }
}

void display(int a[50],int n)
{
    int i;
    for(i=0;i<n;i++)
    {
        printf("%d\t",a[i]);
    }
}

Output:

C program to read and display the array elements

Comments