What I need to do, is input an int c string from the keyboard, but each digit should be a single digit int.
For example in the running program if I would input "1234", it shouldn't read '1234', but a '1' followed by a '2', '3' and then '4'. I would submit my thought process on it, but I'm at a complete loss here.
This is in C++ by the way, and I have the restriction of not being able to use anything from the STL library.