I would like to be able to access a variable passed to my method. I know C might have has some kind of way to pass the address of something as an argument, then refer to that as a pointer and be able to use the variable. Anyway, here's an example.
void myFunction(address to variable) {
*variable = "example";
}
Then call it as:
myFunction(&somevariable);