Reference for Wiring version 0024+. If you have a previous version, use the reference included with your software. If you see any errors or have any comments, let us know.
Name |
, (comma) |
Examples |
// Comma used to separate a list of variable declarations
int a=20, b=30, c=80;
// Comma used to separate a list of values assigned to an array
int[] d = { 20, 60, 80 };
// Comma used to separate a list of parameters passed to a function
digitarWrite(a, LOW);
analogWrite(0, 1023); |
Description |
Separates parameters in function calls and elements during assignment. |
Syntax |
value1, ..., valueN |
Parameters |
value1, ..., valueN |
any int, float, byte, boolean, char |
|
Usage |
Web & Application |
Updated on November 01, 2009 12:22:53pm PST