Escrever uma função que receba um vetor com 10 valores e retorne quantos destes valores são negativos.
Soluções para a tarefa
Respondido por
0
SEGUE O CÓDIGO DA FUNÇÃO EM C:
int conta_negativos(int *vetor)
{
int cont = 0;
for(int i=0; i<10;i++)
{
if(vetor[i] < 0)
cont++;
}
return cont;
}
Perguntas interessantes