Answered step by step
Verified Expert Solution
Question
1 Approved Answer
LANGUAGE C To store very big number, computer use arrays of integer with each integer representing a digit of the big number. Write a function
LANGUAGE C
To store very big number, computer use arrays of integer with each integer representing a digit of the big number. Write a function void subtractBigNumber(int bigNumber1[], int bigNumber2[], int resultBigNumber[] , int sizeNumbers) which will subtract bigNumber2 from bigNumber1 and store the answer in resultBigNumber.
no change must be made on bigNumber1 and bigNumber2 . Do not take care of negative big numbers
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started