"cout" and "cin" won't work
-
I use Microsoft Visual Studio .NET 2003 and creating an unmanaged program. I included iostream but its functions (like
cout
andcin
) still won't work. Help me! P.S.: I want an UNMANAGED (not-.NET) program.Without further info it is hard to tell what kind of problem you've run into. Even so, I might risk the following: are you using
cout
orstd::cout
(same forcin
)? It is the latter that you should be using. Joaquín M López Muñoz Telefónica, Investigación y Desarrollo Want a Boost forum in Code Project? Vote here[^]! -
Without further info it is hard to tell what kind of problem you've run into. Even so, I might risk the following: are you using
cout
orstd::cout
(same forcin
)? It is the latter that you should be using. Joaquín M López Muñoz Telefónica, Investigación y Desarrollo Want a Boost forum in Code Project? Vote here[^]! -
By using the
std
namespace you make the program managed (at least I think so). I need a pure C++ program, without any .NET elements. -