Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

C++Blocks


Code Block
languagecpp
themeConfluence
/*
   multi-line
   comment
*/


Code Block
languagecpp
themeConfluence
// single line comment






Statements

  • Statements are compiled into an ‘executable’ of 1s and 0s, which are run on the Arduino.
  • Statements end with a ;
C++Blocks


c = a+b; // c is assigned the sum of a, b


Image Added