reopened by
1,381 views

1 Answer

Related questions

5 votes
5 votes
6 answers
1
Pankaj Joshi asked Jan 26, 2017
15,861 views
Consider 3 dimensional Array A[90] [30] [40] stored in linear array in column major order. If the base address starts at 10. The location of A[20] [20] [30] is __________...
6 votes
6 votes
2 answers
2
Abhisek Tiwari 4 asked Oct 20, 2018
2,263 views
int arr [3] ;print(arr -arr[0],arr [0]-arr[0][0])P.s :Sorry i can't able to paste the question but this is main Context.
3 votes
3 votes
2 answers
3
Anjan asked Jan 8, 2018
6,361 views
Consider 3 dimensional Array A[90] [30] [40] stored in linear array. If the base address starts at 10, The location of A [20] [20] [30] in case of RMO and CMO are _______...
4 votes
4 votes
3 answers
4
Hira Thakur asked Nov 19, 2017
902 views
#include<stdio.h int main() { int arr [3] ={{{2,4},{7,8},{3,4},},{{2,2},{2,3},{3,4},}}; print("\n%d", (*arr+1)+2+7); return 0; } plz explain this program, internally how ...