C++ 函数首部合法写法
- 指定元素个数与实参数组相同:
void select_sort(int array[10],int n)
- 不指定元素个数:
void select_sort(int array[],int n)
- 指定元素个数与实参数组不同:
void select_sort(int array[5],int n)
3.43MB
文件大小:
评论区