Community
Participate
Working Groups
Build Identifier: 3.2.2 Hi, I am very novie C++ progrmmer trying to compile a simple programe below- #include<iostream> using std::cout; using std::endl; #include<iomanip> using std::setw; int main () { int a[10]; for(int i=0; i<10; i++) a[i]=0; cout<<"Element"<<setw(13)<<"Value"<<endl; for(int j=0; j<10; j++) cout<<j<<setw(13)<<a[j]<<endl; return 0; } I can compile this easily in GCC but everytime im trying to compile this in eclipse i get a error message"An Internal error occured during Launching " I tried to compile other hello.cpp they work fine. It happens to me before as well GCC works fine and Ecilipse giving me trouble. Any one has any idea please..i really like ecilipse IDE. I am using ubuntu 8.04. Thanks in advance. Reproducible: Always
What type of project did you create. Does your error has details.
(In reply to comment #1) > What type of project did you create. Does your error has details. It should reply: Element Value 0 0 1 0 2 0 3 0 4 0 5 0 6 0 7 0 8 0 9 0 I get it using gcc but when i try to run ecilipse,i get a warning window- An internal error occured during launching. Thanks in advance
Apology.I sort it out my self.I had to select executable under Debug in C/C++ Application. Thanks again.