Answers for "how to insert elements in and array and print it in c"

C
0

how to insert elements in and array and print it in c

/*
* 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 Arrayn");
    scanf("%d", &elementCount);
    printf("Enter %d numbers n", 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 Elementsn");
    for(counter = 0; counter < elementCount; counter++){
        printf("%d ", inputArray[counter]);
    }
          
    getch();
    return 0;
}
Posted by: Guest on January-18-2022

Code answers related to "how to insert elements in and array and print it in c"

Code answers related to "C"

Browse Popular Code Answers by Language