If I have an 8 character array, is it possible to split the array up and, say, assign the first few values of the array to one variable, and the next few values to an different variable?
For instance, If my array has the numbers 20110202 in it, I want to split it up so I can can have it say something like "year: 2011 month: 02 day: 02"
I am fairly familiar with c++ techniques, so I dont think i'll need a complete explanation about how to write this from scratch. I just dont know how to split an array up like that.