I l@ve RuBoard

[SYMBOL] [A] [B] [C] [D] [E] [F] [G] [H] [I] [K] [L] [M] [N] [O] [P] [R] [S] [T] [U] [V] [W]

! (logical not) 
!= (inequality operator); 
% (remainder operator); 
%= (compound remainder)  2nd 
& (address-of operator) 
&& (logical and); 
> (greater than); 
>>(input operator) 
>= (greater than equal) 
< (less than); 
<= (less than equal); 
* (asterisk):
    dereference operator 
    multiplication; 
*= (compound multiply);  2nd 
+ (addition); 
++ (increment operator); 
+= (compound add);  2nd 
- (minus) 
-> (member selection operator) 
-- (decrement operator) 
-= (compound minus);  2nd 
/ (division); 
// (comment);  2nd 
/= (compound divide);  2nd 
= (assignment operator) 
== (equality operator); 
?\:
    (conditional operator) 
[] (subscript operator); 
\<\< (output operator) 
\\n (newline character); 
\\t (tab character); 
|| (logical or); 

I l@ve RuBoard