Skip to content
EMPS intranet

Back to top

Note

  • This example demonstrate the effects of if() statements, by highlighting parts of the code that been executed in bold dark red . Try it and see which parts of the code are executed and which are skipped over.
Hi!   Hi!           Next step ›

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...
float y, x=-1.0; if (x>=0) printf("x is greater than zero\n"); y=sqrt(x);

Data

y (float)   x (float)
132   136
3.99805695e-34
  
-1

Memory

132
133
134
135
y = 3.99805695e-34
136
137
138
139
x = -1

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

Show Advanced options

.
                                                                                                                                                                                                                                                                       

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