If i were to declare a pointer to a variable, how would I do it?
I know in ANSI C you do it like this:

int foo;
int* bar = &foo;

And to edit with the pointer you would to this:
(*bar) += 5000;

But how would you do it in Lite-C and with vars?
Thanks if you helped!