if the address of a[1,1] and a[2,1] are 1000 and 1010
respectively and each occupies 2 bytes then the array has
been stored in what order?
Answer Posted / vignesh1988i
always the 2D array will be stored in column order only , in
C.... so only ,
it is a must that we must specify the column subscript
however we miss the row subscript.....
thank u
| Is This Answer Correct ? | 7 Yes | 4 No |
Post New Answer View All Answers
How do you sort filenames in a directory?
How will you delete a node in DLL?
write a program to create a sparse matrix using dynamic memory allocation.
how to write optimum code to divide a 50 digit number with a 25 digit number??
What is the purpose of realloc()?
Can we access the array using a pointer in c language?
What is structure padding in c?
Can we declare function inside main?
how to capitalise first letter of each word in a given string?
which is conditional construct a) if statement b) switch statement c) while/for d) goto
What is the purpose of 'register' keyword?
What are types of preprocessor in c?
Is it better to use a macro or a function?
What is data structure in c and its types?
What is assignment operator?