You can do something like:
void bit2arr(int *result, size_t len, unsigned val) {
int count = 0;
while (val && len) {
// add bit to array if needed
if (val & 1) {
*result++ = count;
--len; // Don't overflow output
}
// Increment counter regardless
++count;
// remove bit and bitshift
val &= (~0 ^ 1);
val >>= 1;
}
}
To take one bit at a time and save the position to an array if it's non-zero.
I used it with:
#include <stdio.h>
#include <string.h>
static const unsigned val = 2409;
int main() {
int result[32];
memset(result, 0, sizeof(result));
bit2arr(result, 32, val);
for (int i = 0; i < 32; ++i) {
printf("%s%d", i ? ", " : "", result[i]);
}
printf("\n");
return 0;
}
Which gave:
0, 3, 5, 6, 8, 11, 0...
It should be easy enough to make the function return the size of the resultant array.