EAGLE Help

Comma


The comma separates the elements of a function argument list or the parameters of a function call:

int func(int n, real r, string s) { ... }
int i = func(1, 3.14, "abc");
It also delimits the values of an array initializer:

int ai[] = { 1, 2, 3 };
and it separates the elements of a variable definition:

int i, j, k;

Index Copyright © 2002 CadSoft Computer GmbH