Imagine a number system based on the entire English alphabet, that is, using the symbols "0ABCDEFGHIJKLMNOPQRSTUVWXYZ".
Write a program that will calculate the sum of two numbers expressed in this system.
The program should ask for the two numbers and output the numbers and their sum as follows (italics indicate user entered data):
Enter the first number: ABCDE
Enter the second number: WXYZ
ABCDE
WXYZ +
---------
AZACD
- i knew that a character array should be used in this one, but a have no idea how to start, i am hoping that you guys can help me with this, thanks in advance.