<?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[binäre zahlen]]></title><description><![CDATA[<p>kann mna in c++ so was schreiben?<br />
int haha = 01010010010;<br />
also das er denkt, das ist binär</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/285960/binäre-zahlen</link><generator>RSS for Node</generator><lastBuildDate>Fri, 21 Aug 2026 03:29:43 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/285960.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 30 Apr 2011 19:33:29 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to binäre zahlen on Sat, 30 Apr 2011 19:33:29 GMT]]></title><description><![CDATA[<p>kann mna in c++ so was schreiben?<br />
int haha = 01010010010;<br />
also das er denkt, das ist binär</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2056592</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2056592</guid><dc:creator><![CDATA[binär]]></dc:creator><pubDate>Sat, 30 Apr 2011 19:33:29 GMT</pubDate></item><item><title><![CDATA[Reply to binäre zahlen on Sat, 30 Apr 2011 19:35:39 GMT]]></title><description><![CDATA[<p><a href="http://www.cplusplus.com/reference/stl/bitset/" rel="nofollow">http://www.cplusplus.com/reference/stl/bitset/</a></p>
<p>*Weg schwing*</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2056593</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2056593</guid><dc:creator><![CDATA[Spiderman]]></dc:creator><pubDate>Sat, 30 Apr 2011 19:35:39 GMT</pubDate></item><item><title><![CDATA[Reply to binäre zahlen on Sat, 30 Apr 2011 19:36:00 GMT]]></title><description><![CDATA[<p>Du könntest es einfach representieren:</p>
<pre><code class="language-cpp">int foo = 0x292; //01010010010
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/2056594</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2056594</guid><dc:creator><![CDATA[EOutOfResources]]></dc:creator><pubDate>Sat, 30 Apr 2011 19:36:00 GMT</pubDate></item><item><title><![CDATA[Reply to binäre zahlen on Sat, 30 Apr 2011 19:36:02 GMT]]></title><description><![CDATA[<p>Nein, das geht leider nur für Oktal und Hex (mit 0 bzw. 0x als Präfix). Du kannst aber mit strtol arbeiten.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2056595</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2056595</guid><dc:creator><![CDATA[SG1]]></dc:creator><pubDate>Sat, 30 Apr 2011 19:36:02 GMT</pubDate></item><item><title><![CDATA[Reply to binäre zahlen on Sat, 30 Apr 2011 20:10:33 GMT]]></title><description><![CDATA[<p>Logisch geht sowas.<br />
<a href="http://www.boost.org/doc/libs/1_42_0/libs/utility/utility.htm#BOOST_BINARY" rel="nofollow"> <code>int haha = BOOST_BINARY (010 10010010);</code> </a></p>
<p>Wenn du den Standard verlässt geht es ganz einfach:<br />
<a href="http://gcc.gnu.org/onlinedocs/gcc/Binary-constants.html" rel="nofollow"> <code>int haha = ob01010010010;</code> </a></p>
]]></description><link>https://www.c-plusplus.net/forum/post/2056605</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2056605</guid><dc:creator><![CDATA[Kenobi]]></dc:creator><pubDate>Sat, 30 Apr 2011 20:10:33 GMT</pubDate></item></channel></rss>