I really want to stop using suse and make knoppix my main distro but i really need to make this work in order to do it.
It has to do with c++ and executing source code.
I type ./a.out and the shell just sits there. It doesnt hang it just sits there looking pretty.
I run the program with the ddd option and executed it from ddd...execution window comes up and nothing shows up.
I used anjuta same thing. No compiler errors no warnings but it wont execute.
Checked the permisions (chnod755) of the file and its execute..tried with no execute from desperation,....same crap.
And yeah i got make.
As I said, during compile, NO ERRORS and NO WARNINGS. I demoted my self to a simple hello world program just to keep things simple.
Code:
#include <iostream> using std::cout; using std::endl; using std::cin; int main () { int x; cin >>x; cout<< x<<endl; return 0; }