This isnt so difficult. All you need t use is % operator
1 2 3 4 5 6
// perform a check to see if value is 32-bit
// else retuen an error
x = value%10000; // supossing that you want to store the value in x and y
y = value/10000;
@crazzyguy101 I think he is talking about the hex values.
@TH 113
1 2 3 4 5 6 7
unsignedlong value;
// input value
unsignedlong x = (value >> 16) & 0xFFFF; // Most significant word
unsignedlong y = value & 0xFFFF; // Least significant word