A
All Rise
If I cant or should not use cout, whats the alternate for outputting to the
console in c++. Printf() ?
console in c++. Printf() ?
All said:If I cant or should not use cout, whats the alternate for outputting
to the console in c++. Printf() ?
-----Original Message-----
Ah. Then you should use new IOStreams.
#include <iostream> instead of <iostream.h>. you'll then need a 'using
namespace std;', or you'll need to refer to std::cout instead of cout.
-cd
.