/*
* C Program to read array elemnts and print
* array elements on screen
*/
#include <stdio.h>
#include <conio.h>
int main(){
int inputArray[500], elementCount, counter;
printf("Enter Number of Elements in Array
");
scanf("%d", &elementCount);
printf("Enter %d numbers
", elementCount);
/* Read array elements one by one using for loop and
stores then in adjacent locations starting form index 0*/
for(counter = 0; counter < elementCount; counter++){
scanf("%d", &inputArray[counter]);
}
/* Print array */
printf("Array Elements
");
for(counter = 0; counter < elementCount; counter++){
printf("%d ", inputArray[counter]);
}
getch();
return 0;
}