<?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[riesige variable?]]></title><description><![CDATA[<p>hallo<br />
würd gern wissen ob oder wie mann auch größere variabelen machen kann. das heißt z.b. eine integer bloß eben 12 byte groß. geht sowas?</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/118064/riesige-variable</link><generator>RSS for Node</generator><lastBuildDate>Fri, 21 Aug 2026 07:12:39 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/118064.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 14 Aug 2005 17:13:53 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to riesige variable? on Sun, 14 Aug 2005 17:13:53 GMT]]></title><description><![CDATA[<p>hallo<br />
würd gern wissen ob oder wie mann auch größere variabelen machen kann. das heißt z.b. eine integer bloß eben 12 byte groß. geht sowas?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/852078</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/852078</guid><dc:creator><![CDATA[(-:]]></dc:creator><pubDate>Sun, 14 Aug 2005 17:13:53 GMT</pubDate></item><item><title><![CDATA[Reply to riesige variable? on Sun, 14 Aug 2005 17:17:09 GMT]]></title><description><![CDATA[<p>char integer[12];</p>
]]></description><link>https://www.c-plusplus.net/forum/post/852082</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/852082</guid><dc:creator><![CDATA[gmp]]></dc:creator><pubDate>Sun, 14 Aug 2005 17:17:09 GMT</pubDate></item><item><title><![CDATA[Reply to riesige variable? on Sun, 14 Aug 2005 17:20:40 GMT]]></title><description><![CDATA[<p>ja ich möcht aber damit auch rechnen wie mit einer integer</p>
]]></description><link>https://www.c-plusplus.net/forum/post/852084</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/852084</guid><dc:creator><![CDATA[(-:]]></dc:creator><pubDate>Sun, 14 Aug 2005 17:20:40 GMT</pubDate></item><item><title><![CDATA[Reply to riesige variable? on Sun, 14 Aug 2005 17:25:04 GMT]]></title><description><![CDATA[<p>Da gibts verschiedene Libraries die dir das bieten. Zum Beispiel GMP.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/852088</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/852088</guid><dc:creator><![CDATA[integer5]]></dc:creator><pubDate>Sun, 14 Aug 2005 17:25:04 GMT</pubDate></item><item><title><![CDATA[Reply to riesige variable? on Sun, 14 Aug 2005 17:33:14 GMT]]></title><description><![CDATA[<p>aha danke un wie funktioniert das genau? bin noch anfänger. könntest du mir ein beispiel geben für nun eine variable mit den selben eigenschaften einer integer bloß das sie 12 byte groß ist?<br />
oder ist sowas sehr aufwändig und fürs forum nicht geeignet?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/852094</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/852094</guid><dc:creator><![CDATA[schnalf]]></dc:creator><pubDate>Sun, 14 Aug 2005 17:33:14 GMT</pubDate></item><item><title><![CDATA[Reply to riesige variable? on Sun, 14 Aug 2005 17:38:20 GMT]]></title><description><![CDATA[<p>uh falscher name ich meinte (-: un nich schnalf sry</p>
]]></description><link>https://www.c-plusplus.net/forum/post/852095</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/852095</guid><dc:creator><![CDATA[(-:]]></dc:creator><pubDate>Sun, 14 Aug 2005 17:38:20 GMT</pubDate></item><item><title><![CDATA[Reply to riesige variable? on Sun, 14 Aug 2005 18:17:32 GMT]]></title><description><![CDATA[<p>Mit GMP so:</p>
<pre><code class="language-cpp">mpz_class a, b;
int c;

a = &quot;12345567890&quot;;
b = &quot;-9087654321&quot;;
c = 12345;

a += b;
a -= c;
b *= c;
b /= a;
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/852129</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/852129</guid><dc:creator><![CDATA[GMP]]></dc:creator><pubDate>Sun, 14 Aug 2005 18:17:32 GMT</pubDate></item><item><title><![CDATA[Reply to riesige variable? on Sun, 14 Aug 2005 18:28:08 GMT]]></title><description><![CDATA[<p>hä? raff ich nich kannst du das bitte dokumentieren?</p>
<p>trotzdem danke!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/852138</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/852138</guid><dc:creator><![CDATA[(-:]]></dc:creator><pubDate>Sun, 14 Aug 2005 18:28:08 GMT</pubDate></item><item><title><![CDATA[Reply to riesige variable? on Sun, 14 Aug 2005 18:53:05 GMT]]></title><description><![CDATA[<p>such mal bei google unter gmp.</p>
<p>und operatoren bedürfen keinerlei erklärung(ausser, du stehst noch ganz am anfang, dann solltest aber auch noch mit kleineren zahlen rechnen <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /> )</p>
]]></description><link>https://www.c-plusplus.net/forum/post/852149</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/852149</guid><dc:creator><![CDATA[otze]]></dc:creator><pubDate>Sun, 14 Aug 2005 18:53:05 GMT</pubDate></item><item><title><![CDATA[Reply to riesige variable? on Sun, 14 Aug 2005 19:51:10 GMT]]></title><description><![CDATA[<p>ich versteh bloß nich wie das genau funktioniert a und b sehen mir sehr nach den begrenzungen der variabelen aus. aber dann mit c komm ich nich mehr mit<br />
bei google bin ich nicht wirklich fündig geworden</p>
]]></description><link>https://www.c-plusplus.net/forum/post/852190</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/852190</guid><dc:creator><![CDATA[(-:]]></dc:creator><pubDate>Sun, 14 Aug 2005 19:51:10 GMT</pubDate></item><item><title><![CDATA[Reply to riesige variable? on Sun, 14 Aug 2005 20:05:46 GMT]]></title><description><![CDATA[<p>a und b sind einfach zwei zahlen mit denen man rechnen kann.</p>
<p>so wie 1+2<br />
oder a+b<br />
oder adam+eva</p>
]]></description><link>https://www.c-plusplus.net/forum/post/852200</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/852200</guid><dc:creator><![CDATA[otze]]></dc:creator><pubDate>Sun, 14 Aug 2005 20:05:46 GMT</pubDate></item><item><title><![CDATA[Reply to riesige variable? on Sun, 14 Aug 2005 20:09:38 GMT]]></title><description><![CDATA[<p>hä? jetzt versteh ich gar nichts mehr! da kann man irgend eine belibige zahl nehmen?</p>
<p>wie funktioniert das denn nun?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/852205</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/852205</guid><dc:creator><![CDATA[(-:]]></dc:creator><pubDate>Sun, 14 Aug 2005 20:09:38 GMT</pubDate></item><item><title><![CDATA[Reply to riesige variable? on Sun, 14 Aug 2005 20:35:59 GMT]]></title><description><![CDATA[<p>Interessiert dich jetzt wie man die Library benutzt oder wie die Library das mit den großen Zahlen implementiert. Oder gar nichts? <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/852226</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/852226</guid><dc:creator><![CDATA[http:&#x2F;&#x2F;www.swox.com&#x2F;gmp&#x2F;]]></dc:creator><pubDate>Sun, 14 Aug 2005 20:35:59 GMT</pubDate></item><item><title><![CDATA[Reply to riesige variable? on Mon, 15 Aug 2005 11:18:02 GMT]]></title><description><![CDATA[<p>na hauptsächlich das mit den großen zahlen. auf der homepage war ich schon aber da bin ich auch nich wirklich schlau draus geworden:.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/852463</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/852463</guid><dc:creator><![CDATA[(-:]]></dc:creator><pubDate>Mon, 15 Aug 2005 11:18:02 GMT</pubDate></item><item><title><![CDATA[Reply to riesige variable? on Mon, 15 Aug 2005 12:49:49 GMT]]></title><description><![CDATA[<p>Seltsam, also ich habe die Seite über google gefunden, auf der GMP Seite, dass GMP in C geschrieben ist und dass es nen C++ Interface gibt und wie man dieses verwendet und anschließend hab ich dir nen Beispiel gemacht (da ich dachte, du hättest damit Probleme).</p>
<p>Aber anscheinend ist dein Problem nicht GMP sondern, dass du dich mit C++ noch nicht auskennst, also vergiss das mit den großen Zahlen erstmal und arbeite nur mit den Bordmitteln</p>
]]></description><link>https://www.c-plusplus.net/forum/post/852533</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/852533</guid><dc:creator><![CDATA[GMP]]></dc:creator><pubDate>Mon, 15 Aug 2005 12:49:49 GMT</pubDate></item><item><title><![CDATA[Reply to riesige variable? on Mon, 15 Aug 2005 14:46:57 GMT]]></title><description><![CDATA[<p>Für was brauchst du das denn ?? Manchmal gibt es auch alternativen für bestimmte Probleme...<br />
rya.<br />
Scorcher24</p>
]]></description><link>https://www.c-plusplus.net/forum/post/852619</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/852619</guid><dc:creator><![CDATA[[[global:former_user]]]]></dc:creator><pubDate>Mon, 15 Aug 2005 14:46:57 GMT</pubDate></item></channel></rss>