C1833: Cannot take address of this object

[ERROR]

Description

An attempt to take the address of an object without an address was made.

Example
  void main() {

  
    register i;

  
    int *p=&i;   // error

  
  }

  
Tips

Specify the object you want to dereference in a manner that it has an address.