<?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[Zeit bekommen]]></title><description><![CDATA[<p>Hallo kennt jemand einen Befehl in c++ wie ich die aktuelle Zeit die in meinem Rechner ist bekomme. Und in welchen Format ist diese dann, wie kann ich sie mit cout ausgeben</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/121914/zeit-bekommen</link><generator>RSS for Node</generator><lastBuildDate>Sat, 22 Aug 2026 23:40:08 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/121914.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 28 Sep 2005 14:42:51 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Zeit bekommen on Wed, 28 Sep 2005 14:42:51 GMT]]></title><description><![CDATA[<p>Hallo kennt jemand einen Befehl in c++ wie ich die aktuelle Zeit die in meinem Rechner ist bekomme. Und in welchen Format ist diese dann, wie kann ich sie mit cout ausgeben</p>
]]></description><link>https://www.c-plusplus.net/forum/post/882230</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/882230</guid><dc:creator><![CDATA[Oliver1980]]></dc:creator><pubDate>Wed, 28 Sep 2005 14:42:51 GMT</pubDate></item><item><title><![CDATA[Reply to Zeit bekommen on Wed, 28 Sep 2005 14:47:41 GMT]]></title><description><![CDATA[<p>Hallo,</p>
<p>sieh mal nach time aus der ctime.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/882239</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/882239</guid><dc:creator><![CDATA[Braunstein]]></dc:creator><pubDate>Wed, 28 Sep 2005 14:47:41 GMT</pubDate></item><item><title><![CDATA[Reply to Zeit bekommen on Wed, 28 Sep 2005 14:56:09 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">#include &lt;iostream&gt;
using namespace std;

int main(void)
{
    cout &lt;&lt; __TIME__ &lt;&lt; endl;

    system(&quot;PAUSE&quot;);
    return 0;
}
</code></pre>
<p>meinst du sowas?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/882245</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/882245</guid><dc:creator><![CDATA[Tiffyrules]]></dc:creator><pubDate>Wed, 28 Sep 2005 14:56:09 GMT</pubDate></item><item><title><![CDATA[Reply to Zeit bekommen on Wed, 28 Sep 2005 15:27:05 GMT]]></title><description><![CDATA[<p>Das was Tiffyrules da geschrieben hat ist (hoffentlich stimmt das nun:) ein predefined makro und wird zur Compilezeit festgelegt. D.h. du würdest immer die Zeit bekommen zu der das Programm kompilliert wurde.</p>
<p>Gruß</p>
]]></description><link>https://www.c-plusplus.net/forum/post/882275</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/882275</guid><dc:creator><![CDATA[FireFlow]]></dc:creator><pubDate>Wed, 28 Sep 2005 15:27:05 GMT</pubDate></item></channel></rss>