Tuesday, 21 February 2012

input values into an array and display them

/*P2.1 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");
}

No comments:

Post a Comment