Posts by Cássio Henrique • 17 points
2 posts
-
-1
votes1
answer73
viewsQ: Error pointer -Wint-Conversion ?? Int to int *
#include<stdio.h> #include<stdlib.h> int *a; int b; int main() { b = 5; *a = &b; printf("%x \n",a); printf("%d",*a); printf("\n %d",b); return 0; } In code output this error appears…
-
0
votes1
answer77
viewsQ: BINGO game in C , Using matrix with 3 dimensions?
How can I generate some (detail: plural) random cards with numbers, but need to manipulate them as a three-dimensional matrix. Cartela[players] [n] [n] .. n = The dimension My program generates only…