<?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[time erklärung]]></title><description><![CDATA[<p>hi zusamme, könnte mir jemand von euch evtl mal kurz auf Deutsch erklären was folgender Code tut? Das wäre super nett.</p>
<pre><code class="language-cpp">time_t t;
time (&amp;t);
tm* timeinfo = localtime (&amp;t);
</code></pre>
<p>Danke schonmal!</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/275211/time-erklärung</link><generator>RSS for Node</generator><lastBuildDate>Thu, 27 Aug 2026 06:18:12 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/275211.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 11 Oct 2010 13:48:55 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to time erklärung on Mon, 11 Oct 2010 13:48:55 GMT]]></title><description><![CDATA[<p>hi zusamme, könnte mir jemand von euch evtl mal kurz auf Deutsch erklären was folgender Code tut? Das wäre super nett.</p>
<pre><code class="language-cpp">time_t t;
time (&amp;t);
tm* timeinfo = localtime (&amp;t);
</code></pre>
<p>Danke schonmal!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1963890</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1963890</guid><dc:creator><![CDATA[oNes]]></dc:creator><pubDate>Mon, 11 Oct 2010 13:48:55 GMT</pubDate></item><item><title><![CDATA[Reply to time erklärung on Mon, 11 Oct 2010 14:06:21 GMT]]></title><description><![CDATA[<p>Es wird die aktuelle Zeit abgefragt ( <code>time</code> ). Diese liegt dann in einem internen Format, <code>time_t</code> , für Computerzeiten vor (üblicherweise UNIX-Zeit). Aus dieser Angabe wird die aktuelle Ortszeit berechnet ( <code>localtime</code> ), im Sinne von menschenlesbarem Datum und Uhrzeit. Diese Angabe wird in einem Datentyp namens <code>struct tm</code> gespeichert, der eben dafür da ist.</p>
<p>P.S.: Lern Englisch! Eine der wichtigsten Voraussetzungen zum Programmieren überhaupt.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1963901</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1963901</guid><dc:creator><![CDATA[SeppJ]]></dc:creator><pubDate>Mon, 11 Oct 2010 14:06:21 GMT</pubDate></item><item><title><![CDATA[Reply to time erklärung on Mon, 11 Oct 2010 15:50:18 GMT]]></title><description><![CDATA[<p>herzlichen dank!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1963972</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1963972</guid><dc:creator><![CDATA[oNes]]></dc:creator><pubDate>Mon, 11 Oct 2010 15:50:18 GMT</pubDate></item></channel></rss>