Recent content by Zichuan

  1. Question on MS Visual C++

    Thanks you all for helping, I have modified the codes as cstassen suggested, and it gives me the same error message. Can you guys please advise further? #include <iostream> int main() { cout << "Hello World!\n"; using namespace std; return 0; }
  2. Question on MS Visual C++

    Hi Doug, For some reason, it still won't runned. However, the following code which I found at http://www.vtc.com/products/c_plusplus_fundamentals.htm works fine. And the syntax is quite different. #include"stdafx.h" usingnamespace System; int main(array<System::String ^> ^args) {...
  3. Question on MS Visual C++

    Hi all, I am trying to self-learn fundamental of C++, can you guys please enlighten me on why some codes can not be executed on MS visual C++? For instance, when I try to run the following program, it gives me an error message "Unable to start program... the system can not find the path...
Back
Top