<?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[ausgeben von ascii code zeichen?]]></title><description><![CDATA[<p>hi all!<br />
ich hab da so ne consolenanwendung und will hier ascii code zeichen ausgeben (zb.: <a href="http://www.torsten-horn.de/techdocs/ascii.gif" rel="nofollow">schraffierte felder</a>)</p>
<p>wie mach ich das (ich hoffe es geht mit printf)</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/49953/ausgeben-von-ascii-code-zeichen</link><generator>RSS for Node</generator><lastBuildDate>Sat, 12 Sep 2026 12:07:54 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/49953.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 24 Sep 2003 20:21:26 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to ausgeben von ascii code zeichen? on Wed, 24 Sep 2003 20:21:26 GMT]]></title><description><![CDATA[<p>hi all!<br />
ich hab da so ne consolenanwendung und will hier ascii code zeichen ausgeben (zb.: <a href="http://www.torsten-horn.de/techdocs/ascii.gif" rel="nofollow">schraffierte felder</a>)</p>
<p>wie mach ich das (ich hoffe es geht mit printf)</p>
]]></description><link>https://www.c-plusplus.net/forum/post/359947</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/359947</guid><dc:creator><![CDATA[Eliteforce]]></dc:creator><pubDate>Wed, 24 Sep 2003 20:21:26 GMT</pubDate></item><item><title><![CDATA[Reply to ausgeben von ascii code zeichen? on Wed, 24 Sep 2003 20:38:46 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">int main()
{
  int i;
  for(i = 0; i &lt; 256; ++i)
    printf(&quot;Zeichen %d: %c\n&quot;, i, i);
  return 0;
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/359958</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/359958</guid><dc:creator><![CDATA[tag]]></dc:creator><pubDate>Wed, 24 Sep 2003 20:38:46 GMT</pubDate></item></channel></rss>