why is typedef needed in the code below?
typedef enum _Coordinate {
CoordinateX = 0, ///< X axis
CoordinateY = 1, ///< Y axis
CPCoordinateZ = 2 ///< Z axis
} Coordinate;
why not just have the code below and remove the typedef?
enum Coordinate {
CoordinateX = 0, ///< X axis
CoordinateY = 1, ///< Y axis
CPCoordinateZ = 2 ///< Z axis
};
_Bool,_Complexfrom C99,_Atomic,_Genericfrom C1x) - use a trailing underscore instead... – Christoph Jan 17 '11 at 21:55