Answers for "how to use array as parameter in c"

C
8

array value from user c

#include <stdio.h>
int main(void)
{
int size, i;
printf("Enter the size of the arrays:\n");
scanf("%d", &size);

int arr1[size];
printf("Enter the elements of the array:\n");
for (i = 0; i < size; i++) {
    scanf_s("%d", arr1[size]);
}
printf("The current array is:\n %d", arr1[i]);
}
Posted by: Guest on September-21-2020
1

passing an array to a function in c

...
int arr[M][N];
...
void randomArrayFill(int arr[M][N]) {
//body
}
Posted by: Guest on September-08-2021

Code answers related to "how to use array as parameter in c"

Code answers related to "C"

Browse Popular Code Answers by Language