Q:

Write a C program to read and print elements of array

0

Write a C program to read and print elements of array

All Answers

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

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

int main()
{
    int arr[MAX_SIZE]; //Declares sizr of array
    int i, num;
    printf("Enter size of array: ");
    scanf("%d", &num);

    printf("Enter %d elements in the array : ", num);

    //Reads size & elements in array
    for(i=0; i<num; i++)
    {
        scanf("%d", &arr[i]);
    }

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

    return 0;
}

Result:

Enter 5 elements in the array : 10

20

30

40

50

Elements in array are: 10, 20, 30, 40, 50,

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

total answers (1)

Write C program to find sum of all elements of an ... >>
<< Write C program to count total number of negative ...