Page 1 of 1

In this task, we compare how data structures and their associated functions can be defined in Cand C+*. As an example, w

Posted: Sat May 14, 2022 2:45 pm
by answerhappygod
In this task, we compare how data structures and their associated functions can be defined in
Cand C+*. As an example, we consider rational numbers, which are represented as a pair of an
integer numerator and an integer denominator. In this task, the numerator and denominator are
represented as int.
(i) Write a struct Rational containing numerator and denominator as public attributes.