Posts by matteosavan • 1 point
1 post
-
0
votes0
answers25
viewsQ: matrices without size in C
I have a doubt that came to me while learning about matrices of a dimension (no size). Follow an example: #include <stdio.h> int main(){ int matriz[] = {1,2,3}; } My question is: and if I then…