Sorry I'm not sure how to correctly word the problem I'm having.
I'm taking the user's input which is unsigned char, let's say
unsigned char array = "123 343 342 4235 87 34 398"
and now I would like to have each number in that String divided by the space into a separate array
items[0] = 123
items[1] = 343
items[2] = 342
and so forth. How can I approach this?
I forgot to mention I'm compiling with Linux so tutorialspoint.com/c_standard_library/c_function_strtok.htm
Does not compile for me or work