Okay. I have said code:
#include <iostream>
int main()
{
std::cout << "This is a native C++ program\n" << std::endl;
return 0;
}//main
How would I compile this from a standard DOS command line? I've searched all over google, and have yet to find an answer that explains things well.
Thanks,
Derek Elensar