Skip to content
EMPS intranet

Back to top
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 somenumber=7; // myfun() can now use the variable somenumber:
void myfun(int i){
  ...
» somenumber=i*i;
} // so can main(), if it is inside the same file: int main(){
  ...
» int k; » myfun(3); » k=6+somenumber; » return 0;
}
Memory

Static variables

132
133
134
135
somenumber = 7

myfun()

264
265
266
267
i = 3

main()

304
305
306
307
k = 1

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

Show Advanced options

.
                                                                                                                                                                                                                                                                       

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