<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Die Tipps-Datenbank &#187; C und CPP</title>
	<atom:link href="http://www.tipps-datenbank.net/internet-und-computer-tipps/c-und-cpp/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tipps-datenbank.net</link>
	<description>Hilfe für jeden</description>
	<lastBuildDate>Sun, 08 Aug 2010 12:03:28 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>de</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Liste mit guten C Compilern</title>
		<link>http://www.tipps-datenbank.net/c-und-cpp/liste-mit-guten-c-compilern/</link>
		<comments>http://www.tipps-datenbank.net/c-und-cpp/liste-mit-guten-c-compilern/#comments</comments>
		<pubDate>Thu, 07 Feb 2008 16:50:19 +0000</pubDate>
		<dc:creator>Sebastian</dc:creator>
				<category><![CDATA[C und CPP]]></category>
		<category><![CDATA[c]]></category>
		<category><![CDATA[compiler]]></category>

		<guid isPermaLink="false">http://www.tipps-datenbank.net/c-und-cpp/liste-mit-guten-c-compilern/</guid>
		<description><![CDATA[

Hier ist eine kleine Liste mit guten Compilern f&#252;r C und CPP:
GNU Compiler Collection
GCC ist einer der &#228;ltesten Compiler f&#252;r C/C++
Borland C++ Tools
Borland stellt eine kleine Auswahl seiner Programmtools kostenlos zum Download bereit.
CYGWin
Mit CYGWin ist es m&#246;glich Programme auf Linuxbasis so zu ver&#228;ndern, dass sie unter Windows anwendbar sind. Er basiert auf dem GCC.
MinGW
MinGW ist [...]]]></description>
			<content:encoded><![CDATA[
<!-- google_ad_section_start -->
<p>Hier ist eine kleine Liste mit guten Compilern f&#252;r C und CPP:</p>
<p><a href="http://gcc.gnu.org/" class="postlink">GNU Compiler Collection</a><br />
GCC ist einer der &#228;ltesten Compiler f&#252;r C/C++</p>
<p><a href="http://www.codegear.com/downloads/free/cppbuilder/" class="postlink">Borland C++ Tools</a><br />
Borland stellt eine kleine Auswahl seiner Programmtools kostenlos zum Download bereit.</p>
<p><a href="http://www.cygwin.com/" class="postlink">CYGWin</a><br />
Mit CYGWin ist es m&#246;glich Programme auf Linuxbasis so zu ver&#228;ndern, dass sie unter Windows anwendbar sind. Er basiert auf dem GCC.</p>
<p><a href="http://www.mingw.org/" class="postlink">MinGW</a><br />
MinGW ist der am h&#228;ufigsten Angewendete Compiler in IDE&#8217;s. Der kann direkt mit der Win-API kommunizieren und damit ohne Schwierigkeiten Windows Programme erstellen.</p>
<!-- google_ad_section_end -->
]]></content:encoded>
			<wfw:commentRss>http://www.tipps-datenbank.net/c-und-cpp/liste-mit-guten-c-compilern/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fullscreen mit C++ erstellen</title>
		<link>http://www.tipps-datenbank.net/c-und-cpp/fullscreen-mit-c-erstellen/</link>
		<comments>http://www.tipps-datenbank.net/c-und-cpp/fullscreen-mit-c-erstellen/#comments</comments>
		<pubDate>Sat, 08 Sep 2007 10:52:27 +0000</pubDate>
		<dc:creator>Sebastian</dc:creator>
				<category><![CDATA[C und CPP]]></category>
		<category><![CDATA[c]]></category>
		<category><![CDATA[Fullscreen]]></category>

		<guid isPermaLink="false">http://gandc.de/blog/?p=24</guid>
		<description><![CDATA[

Ich diesem Tutorial zeige ich euch, wie man sein eigenes C++ Konsolenprogramm im Fullscreenmodus &#246;ffnet. Als erstes kommt der Code un dann die Erkl&#228;rung:
#include &#60;windows.h&#62;
#include &#60;stdio.h&#62;void fs() {
keybd_event(VK_MENU, 0x38, 0, 0);
keybd_event(VK_RETURN, 0x1c, 0, 0);
keybd_event(VK_RETURN, 0X1c, KEYEVENTF_KEYUP, 0);
keybd_event(VK_MENU, 0x38, KEYEVENTF_KEYUP, 0);
}
int main() {
fs();
printf("Fullscreenn");
system("PAUSE");
return 0;
}

Der neue Code ist jetzt ohne Erkl&#228;rung. Wer Probleme mit dem Code hat [...]]]></description>
			<content:encoded><![CDATA[
<!-- google_ad_section_start -->
<p>Ich diesem Tutorial zeige ich euch, wie man sein eigenes C++ Konsolenprogramm im Fullscreenmodus &#246;ffnet. Als erstes kommt der Code un dann die Erkl&#228;rung:</p>
<p><code>#include &lt;windows.h&gt;<br />
#include &lt;stdio.h&gt;void fs() {<br />
keybd_event(VK_MENU, 0x38, 0, 0);<br />
keybd_event(VK_RETURN, 0x1c, 0, 0);<br />
keybd_event(VK_RETURN, 0X1c, KEYEVENTF_KEYUP, 0);<br />
keybd_event(VK_MENU, 0x38, KEYEVENTF_KEYUP, 0);<br />
}<br />
int main() {<br />
fs();<br />
printf("Fullscreenn");<br />
system("PAUSE");<br />
return 0;<br />
}<br />
</code><br />
Der neue Code ist jetzt ohne Erkl&#228;rung. Wer Probleme mit dem Code hat soll sich im Supportforum melden.</p>
<!-- google_ad_section_end -->
]]></content:encoded>
			<wfw:commentRss>http://www.tipps-datenbank.net/c-und-cpp/fullscreen-mit-c-erstellen/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
