Write functions for doing
arithmetic on 100-digit integers. Include functions for
input, output, and addition. The input function should not
print anything. The addition function should do no
reading or printing. No function should make any
assumptions about how the other functions or main
program work. The number of digits should be in a global
constant. The function prototypes should be as follows:
void readBig(int[])
void addBig(int[],int[],int[])
void printBig(int[])
1
Expert's answer
2015-10-22T02:31:21-0400
#include <fstream> #include <string> using namespace std;
Comments
Leave a comment