Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
how can i show the contents of "cout" used in C++ in Visual C++ 6 ?:zzz:
:confused: If you meant that you wants to show some texts with cout with VC++6, here's the simple example.
#include <iostream> using namespace std; void main() { int iAge = 29; cout << "Hello.\n" << "My age = " << iAge << endl; }
Maxwell Chen
Or you can try :
cout.flush()
~RaGE();