Posts by Ronaldo Pereira • 1 point
1 post
-
-1
votes1
answer787
viewsQ: RECURSION IN C - COUNT EVEN NUMBERS OF A VECTOR
#include <stdio.h> #define N 6 int verificaPar (int v[], int n, int qtd, int indice); // protótipo int main() { int vetor[N] = {13, 6, 8, 3, 4, 9}; // vetor igual do exercicio int resultado ;…