I need to get an input from user, in this method - all number 0-9 and small letters a-z are allowed, and come one after another, without enter/space and so on. for example:
1d3ab
I need to get an access to each of the elements, (in the example - '1', then d, then '3', and so on). The thing is, I cannot use getch(), but only functions that linux can recognize in stdio ONLY, due to assignment (strict) restrictions. How can I do that?
Thanks very much