(C++ on Linux, KiTTy)
(HOMEWORK)
Hi, new to the website here. I'm looking to (as the title suggests) pull multi-digit and single-digit integers out of an array of characters.
Example input would look like this:
1234+-5000 + 65 =
The data would be stored in an array as such...
[ 1 ][ 2 ][ 3 ][ 4 ][ + ][ - ][ 5 ][ 0 ][ 0 ][ 0 ][' '][ + ][' '][ 6 ][ 5 ][' '][ \0 ]......[MAX_STR_LEN]
The output needs to be the sum of 1234,-5000, and 5. Things to consider are:
- I must create any helper functions that would be used to process the information.
- This will be converted later into Motorola 68k ASM language (Manually).
Any suggestions? Thanks a bunch!
UPDATE: Solved! Thanks everyone! I used the Doctor's advice.