Tagged Questions

3
votes
2answers
90 views

Beginner's Question on Type Casting

I was going to use math.h on my numbers in my random number generator. It seems that I can only use the math.h functions on doubles. So: I am trying to give "value" the value of "currentValue", or at ...
0
votes
9answers
3k views

Convert struct to unsigned char *

How can I convert the following struct to unsigned char*? typedef struct { unsigned char uc1; unsigned char uc2; unsigned char uc3; unsigned char uc5; unsigned char uc6; } ...