Hi guys,
quick question. Does the structure
try
{
}
catch
{
exit(0);
}
require the preprocessor directive
#include<cstdlib>
to be declared at the beginning of the program? The thing is if I don't declare it the visual c++ compiler works fine but if I try in Unix with g++ it doesn't compile...
thanks