typedef struct fraction_tag { int numerator; int denominator; } FRACTION, * PFRACTION;
fractions.h
The faction type. Stores a fraction as integer numerator/denominator instead of a floating point scalar. Pointer to a FRACTION. The faction type. Stores a fraction as integer numerator/denominator instead of a floating point scalar.
Structs, Records, Enums