Update README.md

Signed-off-by: David Rotermund <54365609+davrot@users.noreply.github.com>
This commit is contained in:
David Rotermund 2023-12-16 18:29:39 +01:00 committed by GitHub
parent f4e973d4fc
commit 417df86d8d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -807,7 +807,82 @@ while True:
|[return ](https://www.arduino.cc/reference/en/language/structure/control-structure/return/)|
|[goto ](https://www.arduino.cc/reference/en/language/structure/control-structure/goto/)|
Bit manipulation, the usual logic operation and less interesting other stuff I will not list here. Go to the language reference.
### Further Syntax
||
|---|
|#define (define)|
|#include (include)|
|/* */ (block comment)|
|// (single line comment)|
|; (semicolon)|
|{} (curly braces)|
### Arithmetic Operators
||
|---|
|% (remainder)|
|* (multiplication)|
|+ (addition)|
|- (subtraction)|
|/ (division)|
|= (assignment operator)|
### Comparison Operators
||
|---|
|!= (not equal to)|
|< (less than)|
|<= (less than or equal to)|
|== (equal to)|
|> (greater than)|
|>= (greater than or equal to)|
### Boolean Operators
||
|---|
|! (logical not)|
|&& (logical and)|
|\|\| (logical or)|
### Pointer Access Operators
||
|---|
|& (reference operator)|
|* (dereference operator)|
### Bitwise Operators
||
|---|
|& (bitwise and)|
|<< (bitshift left)|
|>> (bitshift right)|
|^ (bitwise xor)|
|\| (bitwise or)|
|~ (bitwise not)|
### Compound Operators
||
|---|
|%= (compound remainder)|
|&= (compound bitwise and)|
|*= (compound multiplication)|
|++ (increment)|
|+= (compound addition)|
|-- (decrement)|
|-= (compound subtraction)|
|/= (compound division)|
|^= (compound bitwise xor)|
|\|= (compound bitwise or)|
### Structure