Programming Example
C Program to Read Array Elements
In this program we will show you how to read Array Elements in c programming language
#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);
}
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 . . .
First read the algorithm, then study the program code line by line. After that, compare the code with the output and finally go through the explanation. This approach helps learners understand both the logic and the implementation properly.
After understanding this example, try to rewrite the same program without looking at the code. Then change some values or logic and run it again. This helps improve confidence and keeps learners engaged on the page for longer.