Input Values into an Array and Display them


/*
Program to input values into an array and display them
*/

#include<stdio.h>
main()
{
    int arr[5],i;
    for(i=0; i<5; i++)
    {
        printf("Enter the value for arr[%d] : ",i);
        scanf("%d", &arr[i]);
    }
    printf("The array elements are : \n");
    for(i=0; i<5; i++)
        printf("%d\t", arr[i]);
    printf("\n");
}

Post a Comment

0 Comments