; (semicolon)

From Microduino Wiki
Revision as of 07:51, 4 August 2016 by Fengfeng (talk) (Created page with "*'''; semicolon''' It is used to end a statement. *'''Example:''' <pre style="color:green"> int a = 13; </pre> *'''Note''' Forgetting to end a line in a semicolon will re...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
  • ; semicolon

It is used to end a statement.

  • Example:

int a = 13;
  • Note

Forgetting to end a line in a semicolon will result in a compiler error. The error test may be obvious, and refer to a missing semicolon, or it may not. If an impenetrable or seemingly illogical compiler error comes up, one of the first thins to check is a missing semicolon, near the line where the compiler complained.

[Return to Arduino Syntax Manual]