This provides an OK explanation of the grep command, and may be enough to point you in the right direction.
Just to give you some direction. You can pipe grep to itself, so if you grep for the word goto, and you want to eliminate any of the lines that have /* in them, then you can grep again with the -v option which will exclude any of the lines with that set of characters.
slight