05-23-2008, 10:31 AM
|
#26 (permalink)
|
|
The Frequenter
Join Date: Sep 2007
Location: Denmark
Posts: 352
Thanks: 8
|
As in response to ReSpawN's exit() code:
You can't use exit()'s parameter to specify a shutdown message, thats why we have die(). exit()'s parameter is an integer that tells the shutdown code.
exit(0); means that the program shutdown correct just like in C++:
Code:
int main()
{
return 0;
}

__________________
|
|
|