I've a long long integer varible which holds data like "20101201"
I need to split up it as 2010, 12 and 01.
Note: I need to do this in C program in my linux machine.
|
I've a long long integer varible which holds data like "20101201" I need to split up it as 2010, 12 and 01. Note: I need to do this in C program in my linux machine. |
|||||||
|
|
You can divide by powers of 10 to get rid of numbers on the right:
And the modulo of powers of 10 to get rid of numbers on the left:
And combine them to get the part in the middle:
|
||||
|
|
|
This one should be ok with longs, and puts the answers into strings.
|
||||
|
|
|
Try something like:
Then you can just complete your program by using index to split the numbers into different strings. |
|||||
|
|
For the example you have given, you wanted to divide the number in to three sets: Pass your input as an argument to the executable.
|
||||
|