347 views

1 Answer

0 votes
0 votes
Pointers in C by yaswanth kanithkar...very good book to understand how array is stored in memory and how arrays and pointers go hand in hand.

Related questions

1 votes
1 votes
2 answers
2
Shamim Ahmed asked Dec 11, 2018
1,246 views
Given a 2D array A[40….95, 40...95] in lower triangular representation, size of each element is 1 ByteArray implemented in row major order, base address is 1000Address ...
0 votes
0 votes
1 answer
3
Debargha Mitra Roy asked 3 days ago
48 views
#include <stdio.h int main() { int a[3] = {1, 3, 5, 7, 9, 11}; int *ptr = a[0]; ptr += sizeof(int); printf("%d", *ptr); return 0; }(Assume size of int to be $2$ bytes.)T...