EAGLE Help

Brackets


Brackets are used in array definitions
int ai[];
in array subscripts
n = ai[2];
and in string subscripts to access the individual characters of a string
string s = "Hello world";
char c = s[2];

Index Copyright © 2005 CadSoft Computer GmbH