Code::Blocks Forums

User forums => Using Code::Blocks => Topic started by: Echo on September 23, 2010, 09:47:20 pm

Title: Error
Post by: Echo on September 23, 2010, 09:47:20 pm
Process terminated with status 255

what does this mean?
Title: Re: Error
Post by: MortenMacFly on September 23, 2010, 09:52:16 pm
Process terminated with status 255

what does this mean?
The process you ran returned the exit code 255.

e.g.:
Code
int main(void)
{
  return 255;
}

...will do exactly this.

The exact interpretation of this code nobody except either the documentation of that program or the developer of tat program can provide. Please ask the appropriate person therefore. thanks.