Skip site navigation (1)Skip section navigation (2)

FreeBSD Manual Pages

  
 
  

home | help
OPERATOR(7)		Miscellaneous Information Manual	   OPERATOR(7)

NAME
       operator	-- C and C++ operator precedence and order of evaluation

DESCRIPTION
	     Operator					 Associativity
	     --------					 -------------
	     ()	[] -> .					 left to right
	     ! ~ ++ -- - (type)	* & sizeof new delete	 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
	     ||						 left to right
	     ?:						 right to left
	     = += -= *=	/= %= <<= >>= &= ^= |= throw	 right to left
	     ?:	(C++, third operand)			 right to left
	     ,						 left to right

FILES
       /usr/share/misc/operator

FreeBSD	14.3			 April 8, 2009			   OPERATOR(7)

Want to link to this manual page? Use this URL:
<https://man.freebsd.org/cgi/man.cgi?query=operator&sektion=7&manpath=FreeBSD+14.3-RELEASE+and+Ports>

home | help