[ERROR]
An attempt to take the address of an object without an address was made.
void main() {
register i;
int *p=&i; // error
}
Specify the object you want to dereference in a manner that it has an address.