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...
// Integer and floating-point division
int main(){
  ...
» int j=5, k=3; » double x, y; // Do division as integers: » x=(j+7)/(k*6-j*4+12); // Do division as floating-point: // Converting one int to floating-point is enough » y=(j+7.0)/(k*6-j*4+12); // But converting them all is safer » y=(j+7.0)/(k*6.0-j*4.0+12.0); » printf("x: %g y: %g\n", x, y); » return 0;
}
Memory

main()

128
129
130
131
132
133
134
135
j = 5
k = 3
136
137
138
139
140
141
142
143
x = 4.24399158e-312
144
145
146
147
148
149
150
151
y = -2.27324192e+267

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

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

x: 1 y: 1.2
                                                                                                                                                                                                                                                                       

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