I am trying to write a bool function that looks at the first index in an array which contains a positive or negative number and classifies if it is a negative sign (i.e. -). If it is a negative Sign it returns false everything else returns true. I am trying to figure out how to compare the negative sign. The following code give an error because of the '-'
bool BigNum::get_positive() const
{
char '-';
if(digits[0] == '-')
{
return false;
}
else
{
return true;
}
}
char '-';? – Nim Sep 21 '11 at 7:47isPositive()? A function calledget_X()usually suggests that it's returning some stored info, which is not the case here. – Anson Sep 21 '11 at 8:02if (condition) return true; else return false;, which should logically bereturn !condition;(without theif). – James Kanze Sep 21 '11 at 8:12