Forum: C Nov 16th, 2007 |
| Replies: 1 Views: 3,217 I know there is a way to represent binary, octal and hex values in C, but how do you do it?
Like, say, if i wanted to specify a hex number i would do,
unsigned char i = 0xFF; or
unsigned char... |
Forum: C Apr 5th, 2007 |
| Replies: 2 Views: 1,019 both a and c are correct in a way. Memory allocation of variables is logically stored on the stack which in turn is physically stored on RAM although there is no stack structure whilst stored in RAM.... |