So i know in c++ you cannot right nested functions. But in this code ive been following GetGuess() is called in PlayGame() then i call PlayGame() in main and it will do both functions. If thats not a nested function then what is it exactly?
what i am thinking is that it is okay to call a function in another function?
But it's not okay to define a function within a function?(hence this is called a nested function?)
is that correct?