Unix C++
Would you like to react to this message? Create an account in a few clicks or log in to continue.

launch failed.Binary not found.(build project is complete)

5 posters

Go down

launch failed.Binary not found.(build project is complete) Empty launch failed.Binary not found.(build project is complete)

Post by aarthi Fri Feb 26, 2010 6:05 pm

#include<iostream.h>
#include<stdio.h>
int main()
{
int i,j,len,a[10],temp;
cout<<"enter the length of array";
cin>>len;
for(i=0;i<len;i++)
{
cout<<"enter the elements";
cin>>a[i];
}
for(i=0;i<len-1;i++)
{
for(j=i+1;j<len;j++)
{
if(a[i]<a[j])
{
temp=a[i];
a[i]=a[j];
a[j]=temp;
}
}

}
for(i=0;i<len;i++)
{
cout<<"sorted list"<<a[i];
}
}

aarthi

Posts : 12
Points : 22
Join date : 2010-02-26

Back to top Go down

launch failed.Binary not found.(build project is complete) Empty Binary not found.

Post by Navitha Fri Feb 26, 2010 6:17 pm

I am also getting the same error when i tried to run a program.

Navitha

Posts : 14
Points : 24
Join date : 2010-02-26

Back to top Go down

launch failed.Binary not found.(build project is complete) Empty Re: launch failed.Binary not found.(build project is complete)

Post by Christopher Fri Feb 26, 2010 6:19 pm

are you able to build your project successfully?
Christopher
Christopher
Admin

Posts : 240
Points : 429
Join date : 2010-02-26
Age : 35

https://unixcpp.forumotion.com

Back to top Go down

launch failed.Binary not found.(build project is complete) Empty Re: launch failed.Binary not found.(build project is complete)

Post by crack2drop Wed Mar 03, 2010 6:00 pm

check in the list of files first....Think your exe file dint generate

crack2drop

Posts : 4
Points : 4
Join date : 2010-03-03
Age : 36
Location : Chennai

Back to top Go down

launch failed.Binary not found.(build project is complete) Empty Re: launch failed.Binary not found.(build project is complete)

Post by Vineet_More Wed Mar 03, 2010 6:05 pm

I think the compiler is not being properly configured. its better if u again properly configure the compiler.

Vineet_More

Posts : 27
Points : 31
Join date : 2010-02-26

Back to top Go down

launch failed.Binary not found.(build project is complete) Empty Re: launch failed.Binary not found.(build project is complete)

Post by Christopher Wed Mar 03, 2010 6:07 pm

in few systems kaspersky deletes the g++.exe often. so stop kaspersky before building the project. If u still have this error, check for g++.exe file inside bin folder.
Christopher
Christopher
Admin

Posts : 240
Points : 429
Join date : 2010-02-26
Age : 35

https://unixcpp.forumotion.com

Back to top Go down

launch failed.Binary not found.(build project is complete) Empty Re: launch failed.Binary not found.(build project is complete)

Post by Sponsored content


Sponsored content


Back to top Go down

Back to top


 
Permissions in this forum:
You cannot reply to topics in this forum