|
1-. Given short a[30]; and the base address is 1550, what would print the following command? printf("%lu", & a[35]); 2-. Given float c [50]; and the base address is 900, what would print the following command? printf("%lu", & [40]); 3- Given long b [15][20]; and the base address is 12500, what is the address of b[8][5]? 4- Given int d [10][15]; and the base address is 315, what is the address of d[5][7]? (Assume 4 bytes for the integer) 5- What is the position of shor f[6]?
|