So the question in one of my assignments is: ..
A function whose signature is
int int2seq( bool* X, int8_t x );
that should extract and then store each i-th bit of x in the i-th element of array X; it should return the total number of elements stored.
my Question is What is the bool* X
I've never come across it before,it sounds like a boolean value,but is it supposed to behave like an array?