Answers for "storing integers in array c"

C
13

take array as input in c

int size=5;
int array[size]; // array of size=5;

for(i=0;i<size;i++){
   scanf("%d",&array[i]);
                }
Posted by: Guest on November-05-2020

Code answers related to "storing integers in array c"

Code answers related to "C"

Browse Popular Code Answers by Language