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...
// Failed attempt to swap two numbers
void swap(int min,int max){
  ...
» int tmp=min; » min=max; » max=tmp;
} int main(){
  ...
» int min=3, max=1; » printf("%d %d\n", min, max); » if (min>max) swap(min, max); » printf("%d %d\n", min, max); » return 0;
}
Memory

swap()

128
129
130
131
132
133
134
135
tmp = 3
?
?
?
?
152
153
154
155
156
157
158
159
min = 3
max = 1

main()

188
189
190
191
min = 3
192
193
194
195
max = 1

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

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

3 1
3 1
                                                                                                                                                                                                                                                                       

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