<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[schnelle frage...]]></title><description><![CDATA[<p>was ist diese fehler<br />
[z -= (w *= x) /= (y += z) ist so inordnung]</p>
<p>[z = z-(w =w* x) /= (y = y+z); hab so gemacht mit zuweisung operatoren ]</p>
<p>[cpp]zeigt diese fehler<br />
non -ivalue in assigment</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/133017/schnelle-frage</link><generator>RSS for Node</generator><lastBuildDate>Thu, 27 Aug 2026 19:04:51 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/133017.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 14 Jan 2006 18:26:51 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to schnelle frage... on Sat, 14 Jan 2006 18:26:51 GMT]]></title><description><![CDATA[<p>was ist diese fehler<br />
[z -= (w *= x) /= (y += z) ist so inordnung]</p>
<p>[z = z-(w =w* x) /= (y = y+z); hab so gemacht mit zuweisung operatoren ]</p>
<p>[cpp]zeigt diese fehler<br />
non -ivalue in assigment</p>
]]></description><link>https://www.c-plusplus.net/forum/post/966637</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/966637</guid><dc:creator><![CDATA[aldo]]></dc:creator><pubDate>Sat, 14 Jan 2006 18:26:51 GMT</pubDate></item><item><title><![CDATA[Reply to schnelle frage... on Sat, 14 Jan 2006 18:29:12 GMT]]></title><description><![CDATA[<p>so besser</p>
<pre><code class="language-cpp">z -= (w *= x) /= (y += z) ist so inordnung
</code></pre>
<pre><code class="language-cpp">z = z-(w =w* x) /= (y = y+z); hab so gemacht mit zuweisung operatoren
</code></pre>
<p>zeigt diese fehler</p>
<pre><code class="language-cpp">non -ivalue in assigment
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/966642</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/966642</guid><dc:creator><![CDATA[aldo]]></dc:creator><pubDate>Sat, 14 Jan 2006 18:29:12 GMT</pubDate></item><item><title><![CDATA[Reply to schnelle frage... on Mon, 16 Jan 2006 07:46:49 GMT]]></title><description><![CDATA[<p>Das hängt mit der Klammerung der Werte zusammen - Zuweisungsoperatoren haben eine geringere Priorität als arithmetische Operatoren, deshalb wird der zweite Ausdruck dargestellt als:</p>
<pre><code class="language-cpp">z = (z-(w =w* x)) /= (y = y+z);
</code></pre>
<p>(und &quot;z-(w=w*x)&quot; ist ein temporärer Wert, dem du nichts zuweisen kannst)</p>
]]></description><link>https://www.c-plusplus.net/forum/post/967670</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/967670</guid><dc:creator><![CDATA[CStoll]]></dc:creator><pubDate>Mon, 16 Jan 2006 07:46:49 GMT</pubDate></item></channel></rss>