Skip to content
EMPS intranet

Back to top

Note

  • This code has been compiled to show the internal calculations of the addresses of array elements like this: 824.
Hi!   Hi!           Start main()

Try stepping through the code


  Value and type of last evaluated expression: Address of array element: Address of array elementx:  (none)

Your browser does not support the canvas element which will make some the features unavailable.

If you are using Internet Explorer within the University of Exeter try going to the Settings menu (probably the gear shape at the top right of this page), selecting "Compatibility View settings", unchecking "Display intranet sites in Compatibility View" and reloading this page.

Code

 Header...
int main(){
  ...
» int a[]={2,4,5,8}; » int *ap[]={&a[0],&a[2]}; //ap[0]++[0]++;
}
Memory

main()

132
133
134
135
ap[0] = 140
136
137
138
139
140
141
142
143
ap[1] = 148
a[0] = 2
144
145
146
147
148
149
150
151
a[1] = 4
a[2] = 5
152
153
154
155
a[3] = 8

NB: the actual memory address of each variable is the
address shown plus 4288505280 (0xFF9D65C0).

Show Advanced options

.
                                                                                                                                                                                                                                                                       

Validate   Link-check © Copyright & disclaimer Share
Back to top