C1822: Type mismatch

[ERROR]

Description

There is no conversion between the two specified types.

Example
  void main() {

  
    int *p;

  
    int j;

  
    p=j;     // error

  
  }

  
Tips

Use types that can be converted.