<?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[findet iostream nicht]]></title><description><![CDATA[<p>Hallo.<br />
Hat hier zufällig jemand eine Ahnung von embedded Viusual C++ und kann mir sagen wieso diese Source nicht funktioniert. Ich will einfach nur eine Datei öffnen und auf den Bildschirm ausgeben und bekomme die Fehlermeldung das es keinen iostream header gibt. Kann es sein das es kein cout und cin bei embedded visual gibt????<br />
Hier ist noch die source die ich benutze.(ist übrigens auch in der Anleitung von visual c++ 6</p>
<pre><code class="language-cpp">#include &quot;stdafx.h&quot;

int WINAPI WinMain(	HINSTANCE hInstance,
					HINSTANCE hPrevInstance,
					LPTSTR    lpCmdLine,
					int       nCmdShow)
{
 	// TODO: Place code here.
	int standard(int argc,char* argv[])
	{	
		cout&lt;&lt;&quot;Geben Sie einen Dateinamen(ohen Leeerzeichen!) ein\n&quot;;
		string strFileName;
		cin&gt;&gt;strFileName;
		ifstream file;
		file.open(strFileName.c_str());
		if(file.is_open())
		{
			while(!file.eof())
			{
				string strLine;
				getline(file,strLine);
				cout&lt;&lt;strLine&lt;&lt;endl;
			}
		}
		else
		{
			cout&lt;&lt;&quot;Die Datei kann nicht geöffnet werden.\n&quot;;
		}
		return 0;
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/topic/65611/findet-iostream-nicht</link><generator>RSS for Node</generator><lastBuildDate>Thu, 16 Apr 2026 14:37:03 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/65611.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 20 Feb 2004 11:47:16 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to findet iostream nicht on Fri, 20 Feb 2004 11:47:16 GMT]]></title><description><![CDATA[<p>Hallo.<br />
Hat hier zufällig jemand eine Ahnung von embedded Viusual C++ und kann mir sagen wieso diese Source nicht funktioniert. Ich will einfach nur eine Datei öffnen und auf den Bildschirm ausgeben und bekomme die Fehlermeldung das es keinen iostream header gibt. Kann es sein das es kein cout und cin bei embedded visual gibt????<br />
Hier ist noch die source die ich benutze.(ist übrigens auch in der Anleitung von visual c++ 6</p>
<pre><code class="language-cpp">#include &quot;stdafx.h&quot;

int WINAPI WinMain(	HINSTANCE hInstance,
					HINSTANCE hPrevInstance,
					LPTSTR    lpCmdLine,
					int       nCmdShow)
{
 	// TODO: Place code here.
	int standard(int argc,char* argv[])
	{	
		cout&lt;&lt;&quot;Geben Sie einen Dateinamen(ohen Leeerzeichen!) ein\n&quot;;
		string strFileName;
		cin&gt;&gt;strFileName;
		ifstream file;
		file.open(strFileName.c_str());
		if(file.is_open())
		{
			while(!file.eof())
			{
				string strLine;
				getline(file,strLine);
				cout&lt;&lt;strLine&lt;&lt;endl;
			}
		}
		else
		{
			cout&lt;&lt;&quot;Die Datei kann nicht geöffnet werden.\n&quot;;
		}
		return 0;
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/463976</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/463976</guid><dc:creator><![CDATA[Buddy]]></dc:creator><pubDate>Fri, 20 Feb 2004 11:47:16 GMT</pubDate></item><item><title><![CDATA[Reply to findet iostream nicht on Fri, 20 Feb 2004 11:58:27 GMT]]></title><description><![CDATA[<p>includier mal iostream.h</p>
]]></description><link>https://www.c-plusplus.net/forum/post/463994</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/463994</guid><dc:creator><![CDATA[Rapha]]></dc:creator><pubDate>Fri, 20 Feb 2004 11:58:27 GMT</pubDate></item><item><title><![CDATA[Reply to findet iostream nicht on Fri, 20 Feb 2004 11:58:30 GMT]]></title><description><![CDATA[<p>Hi !</p>
<p>Gib doch mal #include &lt;iostream&gt;<br />
unter #include &quot;stdafx.h&quot; ein.</p>
<p>Bye, J.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/463995</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/463995</guid><dc:creator><![CDATA[J^o^e]]></dc:creator><pubDate>Fri, 20 Feb 2004 11:58:30 GMT</pubDate></item><item><title><![CDATA[Reply to findet iostream nicht on Fri, 20 Feb 2004 12:02:35 GMT]]></title><description><![CDATA[<p>Uiii, da war jemand 3 Sekunden schneller, *grins*</p>
]]></description><link>https://www.c-plusplus.net/forum/post/464001</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/464001</guid><dc:creator><![CDATA[J^o^e]]></dc:creator><pubDate>Fri, 20 Feb 2004 12:02:35 GMT</pubDate></item><item><title><![CDATA[Reply to findet iostream nicht on Fri, 20 Feb 2004 12:17:52 GMT]]></title><description><![CDATA[<p>Bähbäh :p <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/464016</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/464016</guid><dc:creator><![CDATA[Rapha]]></dc:creator><pubDate>Fri, 20 Feb 2004 12:17:52 GMT</pubDate></item><item><title><![CDATA[Reply to findet iostream nicht on Fri, 20 Feb 2004 12:27:32 GMT]]></title><description><![CDATA[<p>ich glaub ich hab meine frage scheiße gestellt. Ich hab das Ding in der Header-Datei eingefügt und er findet den Aufruf auch. Nur dann findet er nicht die entsprechende Datei.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/464023</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/464023</guid><dc:creator><![CDATA[Buddy]]></dc:creator><pubDate>Fri, 20 Feb 2004 12:27:32 GMT</pubDate></item><item><title><![CDATA[Reply to findet iostream nicht on Fri, 20 Feb 2004 12:33:49 GMT]]></title><description><![CDATA[<p>Dann ist Deine Include-Datei entweder nicht in dem Verzeichnis, in dem der Compiler standardmäßig die Include-Dateien sucht, oder gar nicht auf der Festplatte, oder Du hast Dich in der Include-Anweisung vertippt.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/464029</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/464029</guid><dc:creator><![CDATA[J^o^e]]></dc:creator><pubDate>Fri, 20 Feb 2004 12:33:49 GMT</pubDate></item><item><title><![CDATA[Reply to findet iostream nicht on Fri, 20 Feb 2004 13:24:10 GMT]]></title><description><![CDATA[<p>hi<br />
habs jetzt doch noch hingekriegt. hab einfach die incude datei von visual c++ 6 eingefügt. vielen dank für eure hilfe</p>
]]></description><link>https://www.c-plusplus.net/forum/post/464077</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/464077</guid><dc:creator><![CDATA[Buddy]]></dc:creator><pubDate>Fri, 20 Feb 2004 13:24:10 GMT</pubDate></item></channel></rss>