Read Array and Print Array Example in C
On this page (4sections)
About this program
This is an example program in c array example programs. Read the concept first: C Array, then study the code and output below.
Read Array and Print Array C Example Program
/*##Read Array and Print Array*/
/*##Simple Programs, Array Example Programs*/
#include <stdio.h>
#define ARRAY_SIZE 5
int main()
{
int numbers[ARRAY_SIZE], i;
printf("Reading Array with Position : \n");
for (i = 0; i < ARRAY_SIZE; i++)
{
printf("Enter the Number : %d : ", (i+1));
scanf("%d", &numbers[i]);
}
printf("\nPrinting Array: \n");
for (i = 0; i < ARRAY_SIZE; ++i)
{
printf("%d\n", numbers[i]);
}
return 0;
}
Sample Output:
Reading Array with Position :
Enter the Number : 1 : 45
Enter the Number : 2 : 67
Enter the Number : 3 : 23
Enter the Number : 4 : 90
Enter the Number : 5 : 12
Printing Array:
45
67
23
90
12
Related Pages
Learn the concept first, then study the code:
- C Programs — Browse all C Programs.
- C Array — Concept — arrays, indexing and multidimensional arrays.
- Single Dimensional Array Example Program in C Programming — More in c array example programs.
- Sum of Array C Example Program — More in c array example programs.