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...
// This has deliberate error in all the formats
int main(){
  ...
» int k=1; » float floatvar=0; » double bigvar=0; » printf("Please enter some numbers:\n"); » scanf("%d", &floatvar); » scanf("%g", &bigvar); » scanf("%g", &k); » k=10; » »scanf("%lg", &floatvar); » return 0;
}
Memory

main()

128
129
130
131
132
133
134
135
bigvar = 0
136
137
138
139
140
141
142
143
floatvar = 0
k = 1

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

Show Advanced options

.

Input was:

123456789
-123456789
1.2345e-17
7.89e24

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

Output

Please enter some numbers:
                                                                                                                                                                                                                                                                       

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