"Fossies" - the Fresh Open Source Software Archive

Member "miscfiles-1.5/operator" (20 Oct 2000, 425 Bytes) of package /linux/misc/old/miscfiles-1.5.tar.gz:


As a special service "Fossies" has tried to format the requested text file into HTML format (style: standard) with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file.

    1 Operator			Associativity
    2 -----------------------------------------------
    3 () [] -> .			left to right
    4 ! ~ ++ -- - (type) * & sizeof	right to left
    5 * / %				left to right
    6 + -				left to right
    7 << >>				left to right
    8 < <= > >=			left to right
    9 == !=				left to right
   10 &				left to right
   11 ^				left to right
   12 |				left to right
   13 &&				left to right
   14 ||				left to right
   15 ?:				right to left
   16 = += -= etc.			right to left
   17 ,				left to right