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...
// TEST
void myfun(int i){
  ...
» double x; » if (i%2) return ; » x=i*i;
} int main(){
  ...
» myfun(1); » myfun(2); » myfun(3); » printf("Done\n"); » return 0;
}
Memory

myfun()

128
129
130
131
132
133
134
135
x = 2.34084229e-313
160
161
162
163
i = 2

myfun()

128
129
130
131
132
133
134
135
x = 2.76524145e-313
160
161
162
163
i = 3

myfun()

128
129
130
131
132
133
134
135
x = 1.91644313e-313
160
161
162
163
i = 1

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

Show Advanced options

.
Show output (Before looking at the output, work out what you think it put should be and see if you are right.)

Output

Done
                                                                                                                                                                                                                                                                       

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