I just discovered that g++ maps an integer division by zero,e.g.
int num= 1;int denum=0;int result = num/denum;
to a signal 8 and in turn to a "Floating point exception".Why??
Regards. Vasili