[DISABLE, INFORMATION, WARNING , ERROR]
There are two pointers in the statement pointing to non-equal types.
void main() {
int *i;
char *c;
i=c; // C: warning, C++: error
}
Both pointers should point to equal types.