C1825: Indirection to different types

[DISABLE, INFORMATION, WARNING , ERROR]

Description

There are two pointers in the statement pointing to non-equal types.

Example
  void main() {

  
    int *i;

  
    char *c;

  
    i=c;  // C: warning, C++: error

  
  }

  
Tips

Both pointers should point to equal types.