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 / parul_kul
The order of array cannot be defined as we dont know the
max size of the array. however we can calculate the column
subscript of the array as follows-
a[1,1] = 1000, a[1,2] = 1002, a[1,3] = 1004, a[1,4] =
1006, a[1,5] = 1008.
After this the 2nd row will start as a[2,1] = 1010, and so
on.
So we can define the no. of columns, i.e. 5, in this array
but not the no. of rows.
| Is This Answer Correct ? | 14 Yes | 2 No |
Post New Answer View All Answers
Can I initialize unions?
Tell me what are bitwise shift operators?
What is the difference between text and binary modes?
For what purpose null pointer used?
What are the different types of data structures in c?
What does emoji p mean?
where are auto variables stored? What are the characteristics of an auto variable?
What is time null in c?
What are the features of the c language?
What are c header files?
An organised method of depicting the use of an area of computer memory used to signify the uses for different parts of the memory a) swap b) extended memory c) memory map d) all of the above
When can you use a pointer with a function?
What does the error 'Null Pointer Assignment' mean and what causes this error?
Are negative numbers true in c?
What are the types of data files?