Couple of things:
1) Line 56 - return useranswer, hpcnumber, pcnumber; - You cannot return multiple variables with "return".
2 ) You cannot return if you've declared your function "void" : Line 29.
3 ) Don't use "goto", it's bad practice.
4 ) At line 70 you call "pcguess()" with no arguments, but you define that it receives 3 arguments at line 16.
Btw, these are ( except mistake #3 ) errors that your compiler would notice, so you couldn't even compile this. First do something about that, and then I'll see about logical errors (if you have any)
I think you should to look in your code and actually SEE how it actually works! Remember to follow each line starting from main()-function. It is kind of easy to see what is wrong with your code.
REMEMBER:
a) follow each line of code starting from main() function.
b) if function is calling another function, jump there immediadly! Take a note which arguments you give (also check no GLOBAL variables are defined (as i looked it there was none)). Keep in mind from where you jumped in that function since you need to return to that exact line.
c) did any function used something that were not defined in it's code block (aka {}'s) or in the arguments?
From there you should find some errors (and maybe all)