operator -- C operator precedence and order of evaluation
 	   Operator				Associativity
	   --------				-------------
	   () [] -> .				left to right
	   ! ~ ++ -- - (type) * & sizeof	right to left
	   * / %				left to right
	   + -					left to right
	   << >>				left to right
	   < <= > >=				left to right
	   == !=				left to right
	   &					left to right
	   ^					left to right
	   |					left to right
	   &&					left to right
	   ||					left to right
	   ?:					right to left
	   = += -= *= /= %= <<= >>= &= ^= |=	right to left
	   ,					left to right
      /usr/share/misc/operator
FreeBSD 5.2.1		       January 22, 2003 		 FreeBSD 5.2.1  [ Back ] |