|
Re: Pointers in EasyC
You can declare pointer variables by putting 'User code' blocks at the beginning of your function. For example, the following code declares two variables and makes the pointer variable point at the value variable and sets the value to 4.
unsigned char *pointer;
unsigned char value;
pointer = &value;
*pointer = 4;
|