int soma(int* nums, int tam) {
int total = 0;
for(int i = 0; i < tam; i++) {
total += nums[i];
}
return total;
}
n entendi o "int tam", a função ta recebendo o tamanho do array?
int soma(int*nums[3]){
int total = 0;
for(int i = 0, i<strlen(nums), i++){
total = total + nums[i];
}
return total;
}
essa foi minha resposta, na verdade fiquei confuso agora