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...
// Play the Fizz-Buzz game
int main(){
  ...
» for ( int num=1;num<=30; ++num) { » if (num%15==0) printf("FizzBuzz!!\n"); else if (num%3==0) printf("Fizz!\n"); else if (num%5==0) printf("Buzz!\n"); else printf("%d\n", num); } » return 0;
}

Data

num (int)
128
1

Memory

main(): for()

128
129
130
131
num = 1

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

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

1
2
Fizz!
4
Buzz!
Fizz!
7
8
Fizz!
Buzz!
11
Fizz!
13
14
FizzBuzz!!
16
17
Fizz!
19
Buzz!
Fizz!
22
23
Fizz!
Buzz!
26
Fizz!
28
29
FizzBuzz!!
                                                                                                                                                                                                                                                                       

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