W
Wajih-ur-Rehman
int b [10] = {1,2,3,4,5,6,7,8,910};
b is a pointer that points to the first element. Does this mean that "b" is
stored is some other memory location. Assuming that the size of int is 4
bytes and size of the pointer is also 4 bytes, Does this mean that there
will be 44 bytes allocated after this statement? If yes, how can we get the
memory address where "b" is stored????? (&b doesnt work)
Thanx in advance.
b is a pointer that points to the first element. Does this mean that "b" is
stored is some other memory location. Assuming that the size of int is 4
bytes and size of the pointer is also 4 bytes, Does this mean that there
will be 44 bytes allocated after this statement? If yes, how can we get the
memory address where "b" is stored????? (&b doesnt work)
Thanx in advance.