Say i have:
unsigned char *varA, *varB, *varC;
varA=malloc(64);
varB=malloc(32);
varC=malloc(32);
How can i put the first 32 byte of varA into varB and the last 32 byte of varA into varC?
|
It's this simple because the underlying data type is Note that I don't need to multiply the 32 in One more thing: if you want to be fast, it might be sufficient to just work on each half of |
|||||||
|
|
You could use loop to copy individual bytes one by one:
Or
|
|||||||
|
|
Ok let's do this....
Homework done. |
|||