I wrote a code by using C language as follows:
main() { float x[10][10]; int i,j; clrscr(); scanf("%d%d",&i,&j); for(i=0;i<3;i++) ...
Is it possible to make an array with an unknown height but a set width? So that It can be something like:
|----------8-----------| [0][0][0][0][0][0][0][0] | [1][1][1][1][1][1][1][1] | [2][2][2][2][2][2][2][2] | [3][3][3][3][3][3][3][3] \|/