Name: Anonymous 2017-01-15 22:04
Code monkeys say ``unsigned integer'' where computer scientists say natural number.
#ifdef I_REALLY_LIKE_MACROS
#define natural unsigned
#else
typedef unsigned natural;
#endif
unbounded subset
On a physical device.
ln x
and explicitly says that log x
should not be used in place of ln x
. Yet the standard C function in math.h is named double log (double x)
double ln(double x)
in there. Thus, Cee language is not ISO 80000-2 compliant and your argument is invalid.