??? 05/14/09 16:32 Modified: 05/14/09 16:37 Read: times |
#165348 - double = double precision float Responding to: ???'s previous message |
Erik Malund said:
you can not store non-integers in a double A double is not a DWORD. A double is the standard C data type expected to be a double-precision floating-point number. In some implementations (Such as Keil C51) treated the same as a float, i.e. no extended range and resolution. Hence, a double is specifically intended for non-integer numeric values. the '51 is excruciatingly slow in handling double, double indxsing. If we ignore the above mistake about the double data type, we can say: A '51 is excruciatingly slow at handling multi-dimensional arrays. Especially if the indices are larger than 8 bits. Edit: Fixed spelling error. |