Notes: Matt Giuca
Debug the following programs:
uniquecountconcordfitnTips for debugging fitn:
fitn, prove it by
running your regression test suite from lab 2!Get them at:
/home/subjects/252/local/lab/lab03/*
helphelp <command> - Little man page for any GDB commandbreak <subroutine> - Set a breakpoint
at the start of a functionbreak <filename>:<linenum> - Set a breakpoint
at a particular line of a source filerun - Start executionc - Continue executionfin - Continue execution until the function exitss - Step a single line, may step into subroutinesn - Step a single line, will step over subroutinesl - Print program source listingp <variable> - Print the value of a variable or
C expressionq - Quit