Example 1: 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]);
}
Example 2: how to make a c# array
datatype_variable[dimension] = new datatype[size]{array};
string MyArray[] = new string[1]{"Hello","World"};
string MyArray[]={"Hello","world"};
int MyArray=[,]=new int[1,2]{
{1,2,3},
{1,2,3}
}
int MyArray=[,,]=new int[1,2,3]{
{
{1,2,3,4},
{1,2,3,4},
{1,2,3,4}
},
{
{1,2,3,4},
{1,2,3,4},
{1,2,3,4}
}
}
Example 3: c language array
int array[5]={1,2,3,4,5};