C1827: Arithmetic types expected

[ERROR]

Description

After certain operators as * or /, arithmetic types must follow.

Example
  void main() {

  
    int * p;

  
    p*3;   // error

  
  }

  
Tips

* and / must have operands with arithmetic types.