Posts by Arthur_cant • 1 point
1 post
-
-2
votes1
answer56
viewsA: How do I pick up two values obtained in a function through pointers?
#include <stdio.h> #include <stdlib.h> #define TAM 5 int par = 0, impar = 0; int* pegandoNumerosImpares(int vetorImpar[]){ // int* <--- esse * tá especificando para nossa função que…