c语言写一个函数,输入一个
时间: 2023-05-22 13:04:04 浏览: 73
C语言 函数
数组,返回数组中最大值的下标。
当然可以,以下是 C 代码示例:
```
int findMaxIndex(int arr[], int n){
int maxIndex = 0;
for (int i=1; i<n; i++){
if (arr[i] > arr[maxIndex]){
maxIndex = i;
}
}
return maxIndex;
}
```
Description: 这个函数接收一个数组和该数组的长度,然后遍历整个数组,找到最大值的下标并返回。
阅读全文