summaryrefslogtreecommitdiffhomepage
path: root/de-de/c-de.html.markdown
diff options
context:
space:
mode:
authorcaminsha <c.96marco@hotmail.com>2020-02-01 00:27:18 +0100
committercaminsha <c.96marco@hotmail.com>2020-02-01 00:27:18 +0100
commitbc9c26d44c32fe6609f3434891efadad27ff5e6b (patch)
treeffd3f091089025bfa693dbbea15eeac01f36c296 /de-de/c-de.html.markdown
parent38d3c33507d0d91103a8b1c7df9593e22938d960 (diff)
translated associativity of operators
Diffstat (limited to 'de-de/c-de.html.markdown')
-rw-r--r--de-de/c-de.html.markdown22
1 files changed, 22 insertions, 0 deletions
diff --git a/de-de/c-de.html.markdown b/de-de/c-de.html.markdown
index 946d8329..36865900 100644
--- a/de-de/c-de.html.markdown
+++ b/de-de/c-de.html.markdown
@@ -748,7 +748,29 @@ typedef void (*mein_fnp_type)(char *);
"%o"; // Oktalzahl
"%%"; // Gibt % aus
+////////////////////////////////////////////////
+// Reihenfolge der Auswertung
+////////////////////////////////////////////////
+//-------------------------------------------------------//
+// Operatoren | Assoziativität //
+//-------------------------------------------------------//
+// () [] -> . | linksassoziativ //
+// ! ~ ++ -- + = *(type)sizeof | rechtsassoziativ //
+// * / % | linksassoziativ //
+// + - | linksassoziativ //
+// << >> | linksassoziativ //
+// < <= > >= | linksassoziativ //
+// == != | linksassoziativ //
+// & | linksassoziativ //
+// ^ | linksassoziativ //
+// | | linksassoziativ //
+// && | linksassoziativ //
+// || | linksassoziativ //
+// ?: | rechtsassoziativ //
+// = += -= *= /= %= &= ^= |= <<= >>= | rechtsassoziativ //
+// , | linksassoziativ //
+//-------------------------------------------------------//