COMP 51 Debugging (Basic) - sindack/UOP-COMP51-COMP53-Debugging-Help GitHub Wiki
Getting Started
To get started, download the latest version of the repo here: UOP-COMP51-COMP53-Debugging-Help-master.
The project can be found at
/UOP-COMP51-COMP53-Debugging-Help/COMP51/basic/
Open the .vcxproj file to open the project.
About the Project
Here is the basic flow of the program:
- The program will attempt an addition problem.
- The program will attempt a subtract problem.
- The program will attempt a multiplication problem.
- The program will attempt a division problem.
However, when first running the program, the results of the math problems will be incorrect. It is our job to fix the program so that the program returns correct answers!
Utilizing Breakpoints
coming soon