Posting so a small snippet and your interpretation of the error code your compiler is spitting out makes it hard for us to help you. Provide compilable code, using code tags, and the EXACT error message you are getting.
You may get this if you use Cout:
[Error] 'Cout' is not declared in this scope.
Becareful, 'Cout' is not as same as 'cout' (std::cout).
Use std::cout but not 'Cout'.