Posts by ejj • 31 points
1 post
-
3
votes2
answers159
viewsQ: Why is the value in bytes displayed as 4?
I am using a 2x2 matrix with a simple pointer and want to display the values of it. #include <stdio.h> #include <stdlib.h> typedef struct matriz mat; struct matriz { int lin; int col;…