@@ -270,16 +270,21 @@ Compact version of the [Arduino Language Reference](https://www.arduino.cc/refer
270270
271271### Variable Scope & Qualifiers
272272
273+ | Method & Parameter | Description |
274+ | ------------------ | ------------------------------------------------- |
275+ | ` const ` | Qualifier to define constants. |
276+ | ` scope ` | Not a specific keyword; refers to variable scope. |
277+ | ` static ` | Qualifier to declare static variables. |
278+ | ` volatile ` | Qualifier to declare volatile variables. |
279+
280+ ### Utilities
281+
273282| Method & Parameter | Description |
274283| ------------------ | ---------------------------------------------------------- |
275- | ` const ` | Qualifier to define constants. |
276- | ` scope ` | Not a specific keyword; refers to variable scope. |
277- | ` static ` | Qualifier to declare static variables. |
278- | ` volatile ` | Qualifier to declare volatile variables. |
279- | ` Utilities ` | Miscellaneous utility keywords. |
280284| ` PROGMEM ` | Qualifier to store data in program memory. |
281285| ` sizeof() ` | Operator to determine the size of a data type or variable. |
282286
287+ ## Structure
283288
284289### Sketch
285290
@@ -307,6 +312,7 @@ Compact version of the [Arduino Language Reference](https://www.arduino.cc/refer
307312
308313
309314### Further Syntax
315+
310316| Method & Parameter | Description |
311317| -------------------------- | -------------------------------------------------- |
312318| ` #define (define) ` | Macro definition for code substitution. |
@@ -318,6 +324,7 @@ Compact version of the [Arduino Language Reference](https://www.arduino.cc/refer
318324
319325
320326### Arithmetic Operators
327+
321328| Method & Parameter | Description |
322329| ------------------------- | -------------------------------------------------------- |
323330| ` % (remainder) ` | Modulo operator for finding the remainder of a division. |
0 commit comments