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...
// Demonstrate classic error with if() operators
int main(){
  ...
» double mass=14.6; » if (mass=0) // Wrong! printf("The mass should not be zero!\n"); // Now let's get it right... » mass=14.6; » if (mass==0) // Correct printf("The mass should not be zero!\n"); » return 0;
}

Data

mass (double)
128
14.6

Memory

main()

128
129
130
131
132
133
134
135
mass = 14.6

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

Show Advanced options

.
                                                                                                                                                                                                                                                                       

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