<?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[max. ziffernanzahl einer zahl bestimmen]]></title><description><![CDATA[<p>hola leute</p>
<p>gibt es einen mechanismus mit dem man die max. anzahl von zahl eines datentypes rausfinden kann ? im dezimalsystem</p>
<p>also z.b. der maximalwert eines unsigned ints hat 10 ziffern (4294967295).<br />
oder muss ich das selber programmieren ?</p>
<p>Meep Meep</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/117529/max-ziffernanzahl-einer-zahl-bestimmen</link><generator>RSS for Node</generator><lastBuildDate>Fri, 21 Aug 2026 00:51:11 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/117529.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 08 Aug 2005 14:32:50 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to max. ziffernanzahl einer zahl bestimmen on Mon, 08 Aug 2005 14:32:50 GMT]]></title><description><![CDATA[<p>hola leute</p>
<p>gibt es einen mechanismus mit dem man die max. anzahl von zahl eines datentypes rausfinden kann ? im dezimalsystem</p>
<p>also z.b. der maximalwert eines unsigned ints hat 10 ziffern (4294967295).<br />
oder muss ich das selber programmieren ?</p>
<p>Meep Meep</p>
]]></description><link>https://www.c-plusplus.net/forum/post/848069</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/848069</guid><dc:creator><![CDATA[Meep Meep]]></dc:creator><pubDate>Mon, 08 Aug 2005 14:32:50 GMT</pubDate></item><item><title><![CDATA[Reply to max. ziffernanzahl einer zahl bestimmen on Mon, 08 Aug 2005 14:36:35 GMT]]></title><description><![CDATA[<p>Hi,</p>
<p>macht nicht std::numeric_limits&lt;T&gt;::digits10 sowas ?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/848074</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/848074</guid><dc:creator><![CDATA[prolog]]></dc:creator><pubDate>Mon, 08 Aug 2005 14:36:35 GMT</pubDate></item><item><title><![CDATA[Reply to max. ziffernanzahl einer zahl bestimmen on Mon, 08 Aug 2005 14:49:49 GMT]]></title><description><![CDATA[<p>jo das waere scheinbar das was ich brauche.<br />
welche header muss ich dafuer einbinden ?</p>
<p>hab es mit climits.h limits.h limits probiert.</p>
<p>dann hab ich folgenden code probiert:</p>
<pre><code class="language-cpp">Memo1-&gt;Lines-&gt;Add(numeric_limits&lt;unsigned int&gt;::digits10);
</code></pre>
<p>bekomme dann als fehler '[C++ Fehler] main.cpp(19): E2451 Undefiniertes Symbol 'numeric_limits''</p>
<p>mit 'std::' hat er es auch nicht genommen. hab da wahrscheinlich die falsche header eingebunden.</p>
<p>mit welcher header funktioniert es ?</p>
<p>Meep Meep</p>
]]></description><link>https://www.c-plusplus.net/forum/post/848089</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/848089</guid><dc:creator><![CDATA[Meep Meep]]></dc:creator><pubDate>Mon, 08 Aug 2005 14:49:49 GMT</pubDate></item><item><title><![CDATA[Reply to max. ziffernanzahl einer zahl bestimmen on Mon, 08 Aug 2005 14:53:47 GMT]]></title><description><![CDATA[<p>hi,</p>
<pre><code class="language-cpp">#include &lt;limits&gt;
</code></pre>
<p>Sollte es tun.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/848097</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/848097</guid><dc:creator><![CDATA[prolog]]></dc:creator><pubDate>Mon, 08 Aug 2005 14:53:47 GMT</pubDate></item><item><title><![CDATA[Reply to max. ziffernanzahl einer zahl bestimmen on Mon, 08 Aug 2005 15:00:15 GMT]]></title><description><![CDATA[<p>re</p>
<p>habs jetz hinbekommen. &lt;limits&gt; und std:: . die kombination hab ich scheinbar nicht ausprobiert.</p>
<p>er gibt mir jedoch bei std::numeric_limits&lt;unsigned int&gt;::digits10 und bei<br />
std::numeric_limits&lt;int&gt;::digits10 jeweils 9 aus. was ja nicht so recht stimmt.<br />
warum dieses ?<br />
muesst er fuer unsigned int nicht 9 und fuer int 10 ausgeben ?</p>
<p>Meep Meep</p>
]]></description><link>https://www.c-plusplus.net/forum/post/848106</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/848106</guid><dc:creator><![CDATA[Meep Meep]]></dc:creator><pubDate>Mon, 08 Aug 2005 15:00:15 GMT</pubDate></item><item><title><![CDATA[Reply to max. ziffernanzahl einer zahl bestimmen on Mon, 08 Aug 2005 15:14:00 GMT]]></title><description><![CDATA[<p>Hi,</p>
<p>kann ich dir im moment nicht beantworten. Aber schau mal hier</p>
<p><a href="http://www.roguewave.com/support/docs/sourcepro/stdlibref/numeric-limits.html#idx1014" rel="nofollow">http://www.roguewave.com/support/docs/sourcepro/stdlibref/numeric-limits.html#idx1014</a></p>
<p>Vielleicht findest du da eine antwort.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/848114</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/848114</guid><dc:creator><![CDATA[prolog]]></dc:creator><pubDate>Mon, 08 Aug 2005 15:14:00 GMT</pubDate></item></channel></rss>