226 views
1 votes
1 votes

A two dimensional array[10][9] is stored in colum major order with base address 29. Each element in the array takes twp memory words.

What is the address of element array[6][7]?

a) 161

b) 105

c) 147

d) 163

Answer given is option c

Please log in or register to answer this question.

Related questions

0 votes
0 votes
0 answers
1
2 votes
2 votes
1 answer
2
Prayag asked Jul 16, 2018
442 views
#include <stdio.h void f(char ); int main() { char *argv[] = { "ab", "cd", "ef", "gh", "ij", "kl" }; f(argv); return 0; } void f(char p) { char *t; t...