Oque tem de errado no meu codigo?
#include <stdio.h>
int soma(int numeros[3] ){
int total = 0;
int i;
for(i = 0; i < 2; i++) {
total =+ numeros[i];
}
return total;
}
int main () {
int numeros[3];
numeros[0] = 10;
numeros[1] = 20;
numeros[2] = 30;
int total;
total = soma(numeros[3]);
}