C Program to Read Array Elements

Data Structure / Array

3205

Program:

#include<stdio.h>
 
int main() {
   int i, arr[50], num;
 
   printf("\nEnter no of elements :");
   scanf("%d", &num);
 
   //Reading values into Array
   printf("\nEnter the values :\n");
   for (i = 0; i < num; i++) {
      scanf("%d", &arr[i]);
   }
 
   //Printing of all elements of array
   for (i = 0; i < num; i++) {
      printf(" arr[%d] = %d\n", i, arr[i]);
   }
 
   return (0);
}

Output:

Enter no of elements :3

Enter the values :
4
5
6
 arr[0] = 4
 arr[1] = 5
 arr[2] = 6
Press any key to continue . . .

Explanation:

Read Array Elements

This Particular section is dedicated to Programs only. If you want learn more about Data Structure. Then you can visit below links to get more depth on this subject.