int table[256][256]; int row; int column; for(row=0;row<256;row++) { for(column=0;column<256;column++) printf("%d",table[row][column]); printf("\n"); }
M
mmlyh08
@mmlyh08
Posts
-
How to make Matrix Using C [modified] -
How to make Matrix Using C [modified]i need do it using array list or for loop wan... thx
-
How to make Matrix Using C [modified]i need the code for Programming C of this question. urgent... anyone please help me... must using "array" or "for loop" 1 1 1 1 1 0 1 1 1 1 0 2 1 1 1 0 2 2 1 1 0 2 2 2 1 0 2 2 2 2 0 2 2 2 2 2
modified on Wednesday, April 1, 2009 10:18 AM