Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Fractional Numbers with Structure (20 points) Create a structure called Fraction to store fractions having numerator and denominator (both of them are integers). Given a

Fractional Numbers with Structure (20 points) Create a structure called Fraction to store fractions having numerator and denominator (both of them are integers). Given a command and a pair of fractions, execute the command using the following functions that you have to implement. (a) Fraction addition(Fraction a, Fraction b) (b) Fraction subtraction(Fraction a, Fraction b) (c) Fraction multiplication(Fraction a, Fraction b) (d) Fraction division(Fraction a, Fraction b) Your code should contain a main() function where you will take inputs from a file named input.txt and write outputs to a file named output.txt. All your inputs will be valid fractions, so no need to check for divide by zero error.image text in transcribedimage text in transcribed

C language only please.

Input Format The first line contains a single integer T, denoting the number of test cases. (1 denominator, separated by a space. The possible commands are Command Instruction Example Example Explanation input output 1/2 1/4- 3/4 Add the two fractions 1 2 14 3 4 Subtract the second fraction 3 4 1 2 from the first fraction 1/4 Multiply the two fractions5 10 14711 5/10 * 14/7 Divide the first fraction by the123 4 2 3 1/23/4 second fraction 2/3

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Processing Fundamentals Design And Implementation

Authors: KROENKE DAVID M.

1st Edition

8120322258, 978-8120322257

More Books

Students also viewed these Databases questions

Question

What were your most important educational experiences?

Answered: 1 week ago

Question

How was your life influenced by those events?

Answered: 1 week ago

Question

Which of these influenced your life most dramatically?

Answered: 1 week ago