Problem: Would like to continue this loop until I get a 'N or 'n' response from the user.
This is the final problem I encounter then I am done with the assignment, please help me.
If you want your function to return an int value, then declare it with that type.
If you don't want your function to return any value, then declare it as void.
If you know how to write a function that returns an int (and I assume you do, since you seem to be writing them), then you should be able to write a function that returns a bool instead of an int.
You need to close your do...while block. I don't see any closing brace.
If you used a sensible indentation style, it would make it much easier for you to see mistakes of this kind.
A couple of things:
1) Please don't delete questions once you've had them answered. It makes the thread confusing, and makes it useless as a resource for others. If you have a new problem, there's nothing wrong with adding it to the thread as a new reply.
2) Please use code tags when posting code, to make it easier to read:
Sorry, thought that else would also work since I was thinking of .. "If I press Y, I get this.. Else if I press N, I won't get this. But yeah I know it's for if-else statement, sorry about that.