Operators in C and C++: Difference between revisions

Content deleted Content added
formatting means precedence is unimportant? huh? removed nonsense
Table: table is not a good name for a section; clearly it contains tables, but what are the tables showing? spoiler alert: operators
Line 12:
Most of the operators available in C and C++ are also available in other [[C-family]] languages such as [[C Sharp (programming language)|C#]], [[D (programming language)|D]], [[Java (programming language)|Java]], [[Perl]], and [[PHP]] with the same precedence, associativity, and semantics.
 
==TableOperators==
ForIn the purposes of thesefollowing tables, lower case letters such as <code>a</code>, <code>b</code>, and <code>cb</code> represent validliteral values (literals, values from variables, or return value), object/variable names, or lvaluesl-values, as appropriate. <code>R</code>, <code>S</code> and <code>T</code> stand for anya data type(s), and <code>K</code> for a class type or enumeratedenumeration type. Some of the operators have alternative spellings using [[digraphs and trigraphs (programming)|digraphs and trigraphs]] or [[#C++ operator synonyms|operator synonyms]].
 
===Arithmetic operators===