Skip to content
EMPS intranet

Back to top
Hi!   Hi!           Start program

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...
// // Convert a total number of seconds to minutes and seconds //
int main(){ » int totaltime, seconds, minutes; » totaltime=429; » seconds=totaltime;// Keep the value of totaltime as a check » minutes=seconds/60; » seconds=seconds%60; » printf(" %i seconds in total, is %i minutes and %i seconds.\n", totaltime, minutes, seconds); » return 0; }
...

Data

totaltime (int)   seconds (int)
128   132
759815813
  
1741815441
minutes (int)
136
-1767832786

Memory

main()

128
129
130
131
132
133
134
135
totaltime = 759815813
seconds = 1741815441
136
137
138
139
minutes = -1767832786

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

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

 429 seconds in total, is 7 minutes and 9 seconds.
                                                                                                                                                                                                                                                                       

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