Write a C++ program to perform addition of two hexadecimal numeralseach with up to 4 hex digits. If the result of the addition is more than 4 hex digitslong, then simply give the output message “Addition overflow” and stop. Use dynamicarrays to store hexadecimal numbers as arrays of characters. Assume the numbers canbe of different length (i.e. if adding hex numbers 12ab + 90 (first number is stored as 4characters in size, second number is stored as 2 characters in size), the second numberwill then be interpreted as 0090 but the leftmost zeros will not be included in the array(the size of the array variable will be useful here). To perform hex addition, you canconvert each individual hex digit to decimal, perform the addition, and then convert tohex, including adding a carry as necessary.
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here