aboutsummaryrefslogtreecommitdiff
path: root/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp
blob: e92ae8fd96b1284fb14e3fecf6e0dca72c3551e2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
/********************************************************************
* File: CST116-Ch8-Debugging.cpp
*
* General Instructions: Complete each step before proceeding to the
* next.
*
* Debugging Exercise 1
*
* 1) Insert a breakpoint on the lines indicated in the code.
* 2) Run to Breakpoint 1.
* 3) Place a watch on i.
* 4) Execute the while statement by doing a "Step Into".
* 5) The execution continues to the cout statement as expected.
* 6) Step over the cout statement.
* 7) Why didn't the flow of the program return back to the while
*    statement?
* 
* The program is putting out the current value of i at that time
* 
* 8) Fix this problem by removing the ; after the while statement.
* 9) Stop debugging and repeat Steps 2 � 5 to verify the correction
*    worked.
* 10) Stop debugging.
*
* Debugging Exercise 2
*
* 1) Run to Breakpoint 1.
* 2) Step into the while loop.
* 3) Why did the cout not execute?
* 
* We removed the ; in the previous step so the program runs that whole line as one
* 
* 4) Check the value of i, now check the condition, does the
*    condition evaluate to true?
* 
* No
* 
* 5) Change the "< 0" to a "< 10".
* 6) Stop debugging and repeat Steps 1 � 4 to verify the correction
*    worked.
* 7) Stop debugging.
*
* Debugging Exercise 3
*
* 1) Run the program without debugging.
* 2) What is happening now is an infinite loop.
* 3) End your program by holding down the Ctrl key and pressing C.
* 4) Fix the problem by adding a "++" after the i in the cout
*    statement.
* 5) Run the program to Breakpoint 2 and verify that the output
*    displayed on the screen is 0 � 9.
*
* Debugging Exercise 4
*
* 1) Run to Breakpoint 2.
* 2) Add a watch to the variable count.
* 3) Verify that the contents of count is garbage.
* 4) Step into the loop.
* 5) What is the value stored in count now?
* 
* 10
* 
* 6) Where was 10 assigned to count?
* 
* in the *for (count = 0; count < 10; count++);* statement
* 
* 7) Fix the problem and re-run to verify.
********************************************************************/


//pseudo-codes
//sets value for i
//count is going to go from initial and final positions from the value of i
//while i is less than 10, making i= 0-9
//program counts from 0 - 9 and spits it into the console window


#include <iostream>
using std::cout;
using std::endl;

int main()
{
    int i = 0;
    int count;

    // Breakpoint 1
    // Put a breakpoint on the following line
    while (i < 10)
    cout << i++ << endl;

    // Breakpoint 2
    // Put a breakpoint on the following line
    for (count = 0; count < 9; count++);
    cout << count << endl;

    return 0;
}