gpt4 book ai didi

c - 使用带有数组的函数?代码不起作用

转载 作者:行者123 更新时间:2023-11-30 20:19:37 25 4
gpt4 key购买 nike

为什么这段代码不起作用?我知道还有其他方法可以做到这一点,但必须是这种方式。我该如何解决这个问题?

#include <stdio.h>
#include <stdlib.h>

int total(int arr[3], int size_of_array){

int i=0;
int total=0;

for(i=0;i<size_of_array;i++){

total+=arr[i];

}

return total;

}


int main(){


int array2[3]= {0,1,8};

int total(array2, 3);


}

最佳答案

int main(){
int array2[3]= {0,1,8};
int theAnswer; // Make an integer for the result.
theAnswer = total(array2, 3); // Call the function, and store the result.
printf("The answer is %d\n", theAnswer); // Show the result to the user

return 0; // main has to return 0 to indicate "success"
}

关于c - 使用带有数组的函数?代码不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49479761/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com