cout

G

Guest

Hi,

What is lib file of cout & endl funtions?
I included "iostream" also.
Still I am getting this error.


ERROR: C:\MyApp\console.cpp(10): error C2065: 'cout' : undeclared identifier
 
W

William DePalo [MVP VC++]

Durga said:
What is lib file of cout & endl funtions?
I included "iostream" also.
Still I am getting this error.


ERROR: C:\MyApp\console.cpp(10): error C2065: 'cout' : undeclared
identifier

Well, if you have this line

#include <iostream>

in your source

before you make any reference to the output stream, your problem may be due
to an improper use of the precompiled-header feature.

As a test, I'd turn off the pre-compiled header option and rebuild your
project. If that solves the problem, you can read up on the proper use of
the option and post questions about it here.

Regards,
Will
 
B

Bruno van Dooren

What is lib file of cout & endl funtions?
I included "iostream" also.
Still I am getting this error.


ERROR: C:\MyApp\console.cpp(10): error C2065: 'cout' : undeclared
identifier

did you do this:

#include <iostream>
using namespace std;

cout is in the std namespace. if you do not tell the compiler to use that
namespace, it will not find cout.
another way is to explicitly resolve the namespace by using std::cout in
your code.

--

Kind regards,
Bruno van Dooren
(e-mail address removed)
Remove only "_nos_pam"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top