C2801: <Symbol> missing"

[ERROR]

Description

There is a missing symbol for the Compiler to complete a parsing rule. Normally this is just a closing parenthesis or a missing semicolon.

Example
  void main(void) {

  
  // '}' missing

  

other example

  void f() {

  
    int i

  
  }

  
Tips

Usually this is a programming error. Correct your source code.