EAGLE Help

Parentheses


Parentheses group expressions (possibly altering normal operator precedence), isolate conditional expressions, and indicate function calls and function parameters:
d = c * (a + b);
if (d == z) ++x;
func();
void func2(int n) { ... }

Index Copyright © 2005 CadSoft Computer GmbH