I have the following function:
我有以下功能:
void getdata(int arr[], int n)
{
for (int i = 0; i < n; i++) {
int a = srand(time(NULL))
arr[i] = a;
}
}
voidI have the following function:
我有以下功能:
void getdata(int arr[], int n)
{
for (int i = 0; i < n; i++) {
int a = srand(time(NULL))
arr[i] = a;
}
}
void