Posts by João Vitor Staub • 1 point
1 post
-
0
votes0
answers48
viewsQ: I wanted to know how to pass an array as a parameter where the user will type the order
The code I had made is here. I set the max 5. Yeah, it’s the max of the exercise. #include<stdio.h> #include <stdlib.h> #define MAX 5 void exibir(int num, int jogo[][MAX]) { int i, j;…