for this machine problem you will write a program to add very large hexadecimal (unsigned) integers. for the allowable digits you will use 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, a, b, c, d, e, f. the two summands should be stored arrays, one array for each summand. the summands should be stored with one digit per location in the two arrays. your program should, starting at the least significant digits compute the sum by adding the two integers digit by digit. do not forget to handle carries. your program should be able to handle summands with up to 50 digits each. you



Answer :

Other Questions