Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
Memory Process.of Doble Dimension Array
Name: Developer Date: March 7, 2002 at 11:08:00 Pacific
Comment:
Hi All!
I have a question about D.D.Array.Not about its front end structure but offcurse about its back end proccessing. For Example int arr[2][3]; will declare the array of 2 rows n 3 colunms.But on the memory side it doesnt defines any colunms but rows n block within rows? if true then why this happens?and what is the full story behind this? Plz explain it ...its urgent...
Summary: You are missing th point of a two dimension array. In fact a two dimension array can hold twice the information of a one dimension array. Imagine you are programming a chess game. You need to map th...
Summary: (using c/c++) a regular character array holds a string. i am trying to use a 2 dimensional array to hold more than one string. how do i get input from a user or otherwise assign a string in a 2-dimens...
Summary: An array is nothing more than a block of memory. This block of memory has a length of 5 (that's your subscript) times the sizeof(int) (which is 4). So, int a[5] is just a block of memory that is 20 ...