Debugging a computer program
A computer program can be debugged with help of a debugger. A debugger is a special software that allows executing programs line by line and set break points where the execution of the program needs to stop, so the user can inspect values of variables or logic of the application.
Simple debugging can be done by printing the content of variables to the output. This way it is easier for a programmer to spot an error in code.
Comments
Post a Comment