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 specified."
#include <iostream.h>
int main()
{
cout << "Hello World!\n";
return 0;
}
Thanks,
Zichuan
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 specified."
#include <iostream.h>
int main()
{
cout << "Hello World!\n";
return 0;
}
Thanks,
Zichuan