EAGLE Help Light

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;


OBSAH Translation © 2001 ELCAD v.o.s., Copyright © 2001 CadSoft Computer GmbH