C1834: Indirection applied to non-pointer

[ERROR]

Description

The indirection operator (*) was applied to a non-pointer value.

Example
  void main(void) {

  
    int i;

  
    *i=2;

  
  }

  
Tips

Apply the indirection operator only on pointer values.