From ae89cb1414794a9a886335f056c3ac54a334e6cb Mon Sep 17 00:00:00 2001 From: prestonderek Date: Fri, 21 Oct 2022 10:20:02 -0700 Subject: created breakpoint 4 with a condition of x == 8 --- CST116-Ch10-Debugging/CST116-Ch10-Debugging.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/CST116-Ch10-Debugging/CST116-Ch10-Debugging.cpp b/CST116-Ch10-Debugging/CST116-Ch10-Debugging.cpp index a2831ed..4030c20 100644 --- a/CST116-Ch10-Debugging/CST116-Ch10-Debugging.cpp +++ b/CST116-Ch10-Debugging/CST116-Ch10-Debugging.cpp @@ -126,6 +126,7 @@ void FunctionOne(int varX[], int varY[]) // Put breakpoint on the following line varX[x] = x; + for (int x = 0; x < SIZE; x++) varY[x] = x + 100; } -- cgit v1.2.3