<?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[Was ist hier falsch?]]></title><description><![CDATA[<p>hier der code<br />
#include &lt;windows.h&gt;</p>
<p>/* Declare Windows procedure */<br />
LRESULT CALLBACK WindowProcedure (HWND, UINT, WPARAM, LPARAM);</p>
<p>/* Make the class name into a global variable */<br />
<div class="plugin-markdown"><input type="checkbox" id="checkbox3466" /><label for="checkbox3466">= &quot;WindowsApp&quot;;</label></div></p>
<p>int WINAPI WinMain (HINSTANCE hThisInstance,<br />
HINSTANCE hPrevInstance,<br />
LPSTR lpszArgument,<br />
int nFunsterStil)</p>
<p>{<br />
HWND hwnd; /* This is the handle for our window <em>/<br />
MSG messages; /</em> Here messages to the application are saved <em>/<br />
WNDCLASSEX wincl; /</em> Data structure for the windowclass */</p>
<p>/* The Window structure <em>/<br />
wincl.hInstance = hThisInstance;<br />
wincl.lpszClassName = szClassName;<br />
wincl.lpfnWndProc = WindowProcedure; /</em> This function is called by windows <em>/<br />
wincl.style = CS_DBLCLKS; /</em> Catch double-clicks */<br />
wincl.cbSize = sizeof (WNDCLASSEX);</p>
<p>/* Use default icon and mouse-pointer <em>/<br />
wincl.hIcon = LoadIcon (NULL, IDI_APPLICATION);<br />
wincl.hIconSm = LoadIcon (NULL, IDI_APPLICATION);<br />
wincl.hCursor = LoadCursor (NULL, IDC_ARROW);<br />
wincl.lpszMenuName = NULL; /</em> No menu <em>/<br />
wincl.cbClsExtra = 0; /</em> No extra bytes after the window class <em>/<br />
wincl.cbWndExtra = 0; /</em> structure or the window instance */<br />
/* Use Windows's default color as the background of the window */<br />
wincl.hbrBackground = (HBRUSH) COLOR_BACKGROUND;</p>
<p>/* Register the window class, and if it fails quit the program */<br />
if (!RegisterClassEx (&amp;wincl))<br />
return 0;</p>
<p>/* The class is registered, let's create the program*/<br />
hwnd = CreateWindowEx (<br />
0, /* Extended possibilites for variation <em>/<br />
szClassName, /</em> Classname <em>/<br />
&quot;Windows App&quot;, /</em> Title Text <em>/<br />
WS_OVERLAPPEDWINDOW, /</em> default window <em>/<br />
CW_USEDEFAULT, /</em> Windows decides the position <em>/<br />
CW_USEDEFAULT, /</em> where the window ends up on the screen <em>/<br />
544, /</em> The programs width <em>/<br />
375, /</em> and height in pixels <em>/<br />
HWND_DESKTOP, /</em> The window is a child-window to desktop <em>/<br />
NULL, /</em> No menu <em>/<br />
hThisInstance, /</em> Program Instance handler <em>/<br />
NULL /</em> No Window Creation data */<br />
);</p>
<p>/* Make the window visible on the screen */<br />
ShowWindow (hwnd, nFunsterStil);</p>
<p>/* Run the message loop. It will run until GetMessage() returns 0 */<br />
while (GetMessage (&amp;messages, NULL, 0, 0))<br />
{<br />
/* Translate virtual-key messages into character messages */<br />
TranslateMessage(&amp;messages);<br />
/* Send message to WindowProcedure */<br />
DispatchMessage(&amp;messages);<br />
}</p>
<p>/* The program return-value is 0 - The value that PostQuitMessage() gave */<br />
return messages.wParam;<br />
}</p>
<p>/* This function is called by the Windows function DispatchMessage() */</p>
<p>LRESULT CALLBACK WindowProcedure (HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)<br />
{<br />
switch (message) /* handle the messages <em>/<br />
{<br />
case WM_DESTROY:<br />
PostQuitMessage (0); /</em> send a WM_QUIT to the message queue <em>/<br />
break;<br />
default: /</em> for messages that we don't deal with */<br />
return DefWindowProc (hwnd, message, wParam, lParam);<br />
}</p>
<p>return 0;<br />
}</p>
<p>#include &lt;iostream&gt;<br />
using namespace std;</p>
<p>const float MWSt = 16;</p>
<p>int main()<br />
{<br />
float Netto, Steuer, Brutto;</p>
<p>cout &lt;&lt; `Bitte geben Sie den Nettopreis ein!`&lt;&lt; endl;<br />
cin &gt;&gt; Netto;<br />
Steuer = Netto * MWSt / 100;<br />
cout &lt;&lt; `MWSt; `&lt;&lt; Steuer &lt;&lt; endl;<br />
Brutto = Netto + Steuer;<br />
cout &lt;&lt; `Brutto: `&lt;&lt; Brutto &lt;&lt; endl;</p>
<p>}</p>
<p>Bin Lernender und benutze Dev C++ 5</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/236405/was-ist-hier-falsch</link><generator>RSS for Node</generator><lastBuildDate>Wed, 23 Sep 2026 21:38:37 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/236405.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 14 Mar 2009 16:41:49 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Was ist hier falsch? on Sat, 14 Mar 2009 16:41:49 GMT]]></title><description><![CDATA[<p>hier der code<br />
#include &lt;windows.h&gt;</p>
<p>/* Declare Windows procedure */<br />
LRESULT CALLBACK WindowProcedure (HWND, UINT, WPARAM, LPARAM);</p>
<p>/* Make the class name into a global variable */<br />
<div class="plugin-markdown"><input type="checkbox" id="checkbox3466" /><label for="checkbox3466">= &quot;WindowsApp&quot;;</label></div></p>
<p>int WINAPI WinMain (HINSTANCE hThisInstance,<br />
HINSTANCE hPrevInstance,<br />
LPSTR lpszArgument,<br />
int nFunsterStil)</p>
<p>{<br />
HWND hwnd; /* This is the handle for our window <em>/<br />
MSG messages; /</em> Here messages to the application are saved <em>/<br />
WNDCLASSEX wincl; /</em> Data structure for the windowclass */</p>
<p>/* The Window structure <em>/<br />
wincl.hInstance = hThisInstance;<br />
wincl.lpszClassName = szClassName;<br />
wincl.lpfnWndProc = WindowProcedure; /</em> This function is called by windows <em>/<br />
wincl.style = CS_DBLCLKS; /</em> Catch double-clicks */<br />
wincl.cbSize = sizeof (WNDCLASSEX);</p>
<p>/* Use default icon and mouse-pointer <em>/<br />
wincl.hIcon = LoadIcon (NULL, IDI_APPLICATION);<br />
wincl.hIconSm = LoadIcon (NULL, IDI_APPLICATION);<br />
wincl.hCursor = LoadCursor (NULL, IDC_ARROW);<br />
wincl.lpszMenuName = NULL; /</em> No menu <em>/<br />
wincl.cbClsExtra = 0; /</em> No extra bytes after the window class <em>/<br />
wincl.cbWndExtra = 0; /</em> structure or the window instance */<br />
/* Use Windows's default color as the background of the window */<br />
wincl.hbrBackground = (HBRUSH) COLOR_BACKGROUND;</p>
<p>/* Register the window class, and if it fails quit the program */<br />
if (!RegisterClassEx (&amp;wincl))<br />
return 0;</p>
<p>/* The class is registered, let's create the program*/<br />
hwnd = CreateWindowEx (<br />
0, /* Extended possibilites for variation <em>/<br />
szClassName, /</em> Classname <em>/<br />
&quot;Windows App&quot;, /</em> Title Text <em>/<br />
WS_OVERLAPPEDWINDOW, /</em> default window <em>/<br />
CW_USEDEFAULT, /</em> Windows decides the position <em>/<br />
CW_USEDEFAULT, /</em> where the window ends up on the screen <em>/<br />
544, /</em> The programs width <em>/<br />
375, /</em> and height in pixels <em>/<br />
HWND_DESKTOP, /</em> The window is a child-window to desktop <em>/<br />
NULL, /</em> No menu <em>/<br />
hThisInstance, /</em> Program Instance handler <em>/<br />
NULL /</em> No Window Creation data */<br />
);</p>
<p>/* Make the window visible on the screen */<br />
ShowWindow (hwnd, nFunsterStil);</p>
<p>/* Run the message loop. It will run until GetMessage() returns 0 */<br />
while (GetMessage (&amp;messages, NULL, 0, 0))<br />
{<br />
/* Translate virtual-key messages into character messages */<br />
TranslateMessage(&amp;messages);<br />
/* Send message to WindowProcedure */<br />
DispatchMessage(&amp;messages);<br />
}</p>
<p>/* The program return-value is 0 - The value that PostQuitMessage() gave */<br />
return messages.wParam;<br />
}</p>
<p>/* This function is called by the Windows function DispatchMessage() */</p>
<p>LRESULT CALLBACK WindowProcedure (HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)<br />
{<br />
switch (message) /* handle the messages <em>/<br />
{<br />
case WM_DESTROY:<br />
PostQuitMessage (0); /</em> send a WM_QUIT to the message queue <em>/<br />
break;<br />
default: /</em> for messages that we don't deal with */<br />
return DefWindowProc (hwnd, message, wParam, lParam);<br />
}</p>
<p>return 0;<br />
}</p>
<p>#include &lt;iostream&gt;<br />
using namespace std;</p>
<p>const float MWSt = 16;</p>
<p>int main()<br />
{<br />
float Netto, Steuer, Brutto;</p>
<p>cout &lt;&lt; `Bitte geben Sie den Nettopreis ein!`&lt;&lt; endl;<br />
cin &gt;&gt; Netto;<br />
Steuer = Netto * MWSt / 100;<br />
cout &lt;&lt; `MWSt; `&lt;&lt; Steuer &lt;&lt; endl;<br />
Brutto = Netto + Steuer;<br />
cout &lt;&lt; `Brutto: `&lt;&lt; Brutto &lt;&lt; endl;</p>
<p>}</p>
<p>Bin Lernender und benutze Dev C++ 5</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1679947</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1679947</guid><dc:creator><![CDATA[rini]]></dc:creator><pubDate>Sat, 14 Mar 2009 16:41:49 GMT</pubDate></item><item><title><![CDATA[Reply to Was ist hier falsch? on Sat, 14 Mar 2009 16:49:02 GMT]]></title><description><![CDATA[<p>hab mir 1 Zeile durchgelesen...</p>
<p>benutze doch bitte <code>[</code> cpp]-Tags die gehen so hier:<br />
<code>[cpp]</code> [/cpp]</p>
<p>Und nach der Zeile ist mir aufgefallen, dass du auch noch im falschen Forum bist:</p>
<p><code>#include &lt;windows.h&gt;</code><br />
-&gt; WinAPI-Forum</p>
<p>bb</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1679956</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1679956</guid><dc:creator><![CDATA[unskilled]]></dc:creator><pubDate>Sat, 14 Mar 2009 16:49:02 GMT</pubDate></item><item><title><![CDATA[Reply to Was ist hier falsch? on Sat, 14 Mar 2009 18:06:04 GMT]]></title><description><![CDATA[<p>Und ausserdem hast du vergessen, das Problem zu beschreiben.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1680003</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1680003</guid><dc:creator><![CDATA[Nanyuki]]></dc:creator><pubDate>Sat, 14 Mar 2009 18:06:04 GMT</pubDate></item><item><title><![CDATA[Reply to Was ist hier falsch? on Sat, 14 Mar 2009 18:15:17 GMT]]></title><description><![CDATA[<p>Man beachte, dass er eigentlich <em>zwei</em> Programme gepostet hat...</p>
<p>Das erste ist fehlerfrei (Windows):</p>
<pre><code class="language-cpp">/* Declare Windows procedure */
LRESULT CALLBACK WindowProcedure (HWND, UINT, WPARAM, LPARAM);

/* Make the class name into a global variable */
char szClassName[ ] = &quot;WindowsApp&quot;;

int WINAPI WinMain (HINSTANCE hThisInstance,
HINSTANCE hPrevInstance,
LPSTR lpszArgument,
int nFunsterStil)

{
HWND hwnd; /* This is the handle for our window */
MSG messages; /* Here messages to the application are saved */
WNDCLASSEX wincl; /* Data structure for the windowclass */

/* The Window structure */
wincl.hInstance = hThisInstance;
wincl.lpszClassName = szClassName;
wincl.lpfnWndProc = WindowProcedure; /* This function is called by windows */
wincl.style = CS_DBLCLKS; /* Catch double-clicks */
wincl.cbSize = sizeof (WNDCLASSEX);

/* Use default icon and mouse-pointer */
wincl.hIcon = LoadIcon (NULL, IDI_APPLICATION);
wincl.hIconSm = LoadIcon (NULL, IDI_APPLICATION);
wincl.hCursor = LoadCursor (NULL, IDC_ARROW);
wincl.lpszMenuName = NULL; /* No menu */
wincl.cbClsExtra = 0; /* No extra bytes after the window class */
wincl.cbWndExtra = 0; /* structure or the window instance */
/* Use Windows's default color as the background of the window */
wincl.hbrBackground = (HBRUSH) COLOR_BACKGROUND;

/* Register the window class, and if it fails quit the program */
if (!RegisterClassEx (&amp;wincl))
return 0;

/* The class is registered, let's create the program*/
hwnd = CreateWindowEx (
0, /* Extended possibilites for variation */
szClassName, /* Classname */
&quot;Windows App&quot;, /* Title Text */
WS_OVERLAPPEDWINDOW, /* default window */
CW_USEDEFAULT, /* Windows decides the position */
CW_USEDEFAULT, /* where the window ends up on the screen */
544, /* The programs width */
375, /* and height in pixels */
HWND_DESKTOP, /* The window is a child-window to desktop */
NULL, /* No menu */
hThisInstance, /* Program Instance handler */
NULL /* No Window Creation data */
);

/* Make the window visible on the screen */
ShowWindow (hwnd, nFunsterStil);

/* Run the message loop. It will run until GetMessage() returns 0 */
while (GetMessage (&amp;messages, NULL, 0, 0))
{
/* Translate virtual-key messages into character messages */
TranslateMessage(&amp;messages);
/* Send message to WindowProcedure */
DispatchMessage(&amp;messages);
}

/* The program return-value is 0 - The value that PostQuitMessage() gave */
return messages.wParam;
}

/* This function is called by the Windows function DispatchMessage() */

LRESULT CALLBACK WindowProcedure (HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
{
switch (message) /* handle the messages */
{
case WM_DESTROY:
PostQuitMessage (0); /* send a WM_QUIT to the message queue */
break;
default: /* for messages that we don't deal with */
return DefWindowProc (hwnd, message, wParam, lParam);
}

return 0;
}
</code></pre>
<p>Beim zweiten benutzt du bei <code>cout</code> faelschlicherwiese die '-Zeichen fuer Zeichenliterale anstelle der &quot;-Zeichen, wenn du diese ersetzt funktioniert dein Programm auch:</p>
<pre><code class="language-cpp">#include &lt;iostream&gt;
using namespace std;

const float MWSt = 16;

int main()
{
float Netto, Steuer, Brutto;

cout &lt;&lt; &quot;Bitte geben Sie den Nettopreis ein!&quot;&lt;&lt; endl;
cin &gt;&gt; Netto;
Steuer = Netto * MWSt / 100;
cout &lt;&lt; &quot;MWSt; &quot;&lt;&lt; Steuer &lt;&lt; endl;
Brutto = Netto + Steuer;
cout &lt;&lt; &quot;Brutto: &quot;&lt;&lt; Brutto &lt;&lt; endl;
cin &gt;&gt; Brutto;
}
</code></pre>
<p>Gruss<br />
Cartman</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1680007</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1680007</guid><dc:creator><![CDATA[Eric Cartman]]></dc:creator><pubDate>Sat, 14 Mar 2009 18:15:17 GMT</pubDate></item><item><title><![CDATA[Reply to Was ist hier falsch? on Sun, 15 Mar 2009 16:09:34 GMT]]></title><description><![CDATA[<p>#include &lt;iostream&gt;<br />
using namespace std;</p>
<p>const float MWSt = 16;</p>
<p>int main()<br />
{<br />
float Netto, Steuer, Brutto;</p>
<p>cout &lt;&lt; &quot;Bitte geben Sie den Nettopreis ein!&quot;&lt;&lt; endl;<br />
cin &gt;&gt; Netto;<br />
Steuer = Netto * MWSt / 100;<br />
cout &lt;&lt; &quot;MWSt; &quot;&lt;&lt; Steuer &lt;&lt; endl;<br />
Brutto = Netto + Steuer;<br />
cout &lt;&lt; &quot;Brutto: &quot;&lt;&lt; Brutto &lt;&lt; endl;<br />
cin &gt;&gt; Brutto;<br />
}</p>
<p>Ich habe die Zeichen ersetzt aber es kommt immer noch ein Fehler <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/26a0.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--warning"
      title=":warning:"
      alt="⚠"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1680441</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1680441</guid><dc:creator><![CDATA[rini]]></dc:creator><pubDate>Sun, 15 Mar 2009 16:09:34 GMT</pubDate></item><item><title><![CDATA[Reply to Was ist hier falsch? on Sun, 15 Mar 2009 16:11:18 GMT]]></title><description><![CDATA[<p>Ist es so schwierig, einen brauchbaren Threadtitel zu wählen, [cpp]-Tags einzusetzen, nachdem man darauf hingewiesen wurde, und die Fehlermeldung von sich aus zu posten? <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f644.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--face_with_rolling_eyes"
      title=":rolling_eyes:"
      alt="🙄"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1680443</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1680443</guid><dc:creator><![CDATA[Nexus]]></dc:creator><pubDate>Sun, 15 Mar 2009 16:11:18 GMT</pubDate></item><item><title><![CDATA[Reply to Was ist hier falsch? on Sun, 15 Mar 2009 16:13:27 GMT]]></title><description><![CDATA[<p>Bei Microsoft Visual C++ Express Edition wird keine Fehlermeldung angezeigt oder könnt ihr mit dem was anfangen</p>
<p>1&gt;test - 1 Fehler, 1 Warnung(en)<br />
========== Erstellen: 0 erfolgreich, Fehler bei 1, 0 aktuell, 0 übersprungen ==========</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1680444</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1680444</guid><dc:creator><![CDATA[rini]]></dc:creator><pubDate>Sun, 15 Mar 2009 16:13:27 GMT</pubDate></item><item><title><![CDATA[Reply to Was ist hier falsch? on Sun, 15 Mar 2009 16:14:33 GMT]]></title><description><![CDATA[<p>Und was steht oberhalb?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1680445</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1680445</guid><dc:creator><![CDATA[Nexus]]></dc:creator><pubDate>Sun, 15 Mar 2009 16:14:33 GMT</pubDate></item><item><title><![CDATA[Reply to Was ist hier falsch? on Sun, 15 Mar 2009 16:16:01 GMT]]></title><description><![CDATA[<p>Und dann das ist ein Code aus meinem C++ Buch den ich mal ausprobieren wollte ich bin grad am lernen von C++! <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title=":)"
      alt="🙂"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1680446</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1680446</guid><dc:creator><![CDATA[rini]]></dc:creator><pubDate>Sun, 15 Mar 2009 16:16:01 GMT</pubDate></item><item><title><![CDATA[Reply to Was ist hier falsch? on Sun, 15 Mar 2009 16:18:13 GMT]]></title><description><![CDATA[<p>[quote=&quot;Nexus&quot;]Und was steht oberhalb?[/quote]</p>
<p>&quot;test.exe&quot;: &quot;C:\Users\xxxxx\Documents\Visual Studio 2008\Projects\test\Debug\test.exe&quot; geladen, Symbole wurden geladen.<br />
&quot;test.exe&quot;: &quot;C:\Windows\System32\ntdll.dll&quot; wurde geladen<br />
&quot;test.exe&quot;: &quot;C:\Windows\System32\kernel32.dll&quot; wurde geladen<br />
&quot;test.exe&quot;: &quot;C:\Windows\System32\user32.dll&quot; wurde geladen<br />
&quot;test.exe&quot;: &quot;C:\Windows\System32\gdi32.dll&quot; wurde geladen<br />
&quot;test.exe&quot;: &quot;C:\Windows\System32\advapi32.dll&quot; wurde geladen<br />
&quot;test.exe&quot;: &quot;C:\Windows\System32\rpcrt4.dll&quot; wurde geladen<br />
&quot;test.exe&quot;: &quot;C:\Windows\winsxs\x86_microsoft.vc90.debugcrt_1fc8b3b9a1e18e3b_9.0.30729.1_none_bb1f6aa1308c35eb\msvcr90d.dll&quot; wurde geladen<br />
&quot;test.exe&quot;: &quot;C:\Windows\System32\imm32.dll&quot; wurde geladen<br />
&quot;test.exe&quot;: &quot;C:\Windows\System32\msctf.dll&quot; wurde geladen<br />
&quot;test.exe&quot;: &quot;C:\Windows\System32\msvcrt.dll&quot; wurde geladen<br />
&quot;test.exe&quot;: &quot;C:\Windows\System32\lpk.dll&quot; wurde geladen<br />
&quot;test.exe&quot;: &quot;C:\Windows\System32\usp10.dll&quot; wurde geladen<br />
&quot;test.exe&quot;: &quot;C:\Windows\System32\uxtheme.dll&quot; wurde geladen<br />
&quot;test.exe&quot;: &quot;C:\Windows\System32\ole32.dll&quot; wurde geladen<br />
&quot;test.exe&quot;: &quot;C:\Windows\System32\oleaut32.dll&quot; wurde geladen<br />
Das Programm &quot;[4700] test.exe: Systemeigen&quot; wurde mit Code 0 (0x0) beendet.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1680447</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1680447</guid><dc:creator><![CDATA[rini]]></dc:creator><pubDate>Sun, 15 Mar 2009 16:18:13 GMT</pubDate></item><item><title><![CDATA[Reply to Was ist hier falsch? on Sun, 15 Mar 2009 16:19:48 GMT]]></title><description><![CDATA[<p>Willst du uns verarschen? Hat das Programm nun kompiliert oder nicht?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1680448</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1680448</guid><dc:creator><![CDATA[Nexus]]></dc:creator><pubDate>Sun, 15 Mar 2009 16:19:48 GMT</pubDate></item><item><title><![CDATA[Reply to Was ist hier falsch? on Sun, 15 Mar 2009 16:24:59 GMT]]></title><description><![CDATA[<p>Visual C++</p>
<p>hat kompiliert und dann kam der Fehler</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1680451</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1680451</guid><dc:creator><![CDATA[rini]]></dc:creator><pubDate>Sun, 15 Mar 2009 16:24:59 GMT</pubDate></item><item><title><![CDATA[Reply to Was ist hier falsch? on Sun, 15 Mar 2009 16:26:02 GMT]]></title><description><![CDATA[<p>Aber lasst es einfach ich hör einfach auf mit C++ lernen gut</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1680452</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1680452</guid><dc:creator><![CDATA[rini]]></dc:creator><pubDate>Sun, 15 Mar 2009 16:26:02 GMT</pubDate></item><item><title><![CDATA[Reply to Was ist hier falsch? on Sun, 15 Mar 2009 16:27:28 GMT]]></title><description><![CDATA[<p>Das hier,</p>
<p>rini schrieb:</p>
<blockquote>
<p>1&gt;test - 1 Fehler, 1 Warnung(en)<br />
========== Erstellen: 0 erfolgreich, Fehler bei 1, 0 aktuell, 0 übersprungen ==========</p>
</blockquote>
<p>stand ganz sicher nie unterhalb von dem hier:</p>
<p>rini schrieb:</p>
<blockquote>
<p>&quot;test.exe&quot;: &quot;C:\Users\xxxxx\Documents\Visual Studio 2008\Projects\test\Debug\test.exe&quot; geladen, Symbole wurden geladen.<br />
&quot;test.exe&quot;: &quot;C:\Windows\System32\ntdll.dll&quot; wurde geladen<br />
&quot;test.exe&quot;: &quot;C:\Windows\System32\kernel32.dll&quot; wurde geladen<br />
&quot;test.exe&quot;: &quot;C:\Windows\System32\user32.dll&quot; wurde geladen<br />
&quot;test.exe&quot;: &quot;C:\Windows\System32\gdi32.dll&quot; wurde geladen<br />
&quot;test.exe&quot;: &quot;C:\Windows\System32\advapi32.dll&quot; wurde geladen<br />
&quot;test.exe&quot;: &quot;C:\Windows\System32\rpcrt4.dll&quot; wurde geladen<br />
&quot;test.exe&quot;: &quot;C:\Windows\winsxs\x86_microsoft.vc90.debugcrt_1fc8b3b9a1e18e3b_9.0.30729.1_none_bb1f6aa1308c35eb\msvcr90d.dll&quot; wurde geladen<br />
&quot;test.exe&quot;: &quot;C:\Windows\System32\imm32.dll&quot; wurde geladen<br />
&quot;test.exe&quot;: &quot;C:\Windows\System32\msctf.dll&quot; wurde geladen<br />
&quot;test.exe&quot;: &quot;C:\Windows\System32\msvcrt.dll&quot; wurde geladen<br />
&quot;test.exe&quot;: &quot;C:\Windows\System32\lpk.dll&quot; wurde geladen<br />
&quot;test.exe&quot;: &quot;C:\Windows\System32\usp10.dll&quot; wurde geladen<br />
&quot;test.exe&quot;: &quot;C:\Windows\System32\uxtheme.dll&quot; wurde geladen<br />
&quot;test.exe&quot;: &quot;C:\Windows\System32\ole32.dll&quot; wurde geladen<br />
&quot;test.exe&quot;: &quot;C:\Windows\System32\oleaut32.dll&quot; wurde geladen<br />
Das Programm &quot;[4700] test.exe: Systemeigen&quot; wurde mit Code 0 (0x0) beendet.</p>
</blockquote>
<p>Das zweitere ist kein Fehler, das ist ein Log von dem erfolgreich ausgeführten Programm, welches du in Visual Studio gestartet hast.</p>
<p>Grüssli</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1680453</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1680453</guid><dc:creator><![CDATA[Dravere]]></dc:creator><pubDate>Sun, 15 Mar 2009 16:27:28 GMT</pubDate></item><item><title><![CDATA[Reply to Was ist hier falsch? on Sun, 15 Mar 2009 16:28:39 GMT]]></title><description><![CDATA[<p>ne das Stand auch nicht untereinander</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1680454</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1680454</guid><dc:creator><![CDATA[rini]]></dc:creator><pubDate>Sun, 15 Mar 2009 16:28:39 GMT</pubDate></item><item><title><![CDATA[Reply to Was ist hier falsch? on Sun, 15 Mar 2009 16:32:30 GMT]]></title><description><![CDATA[<p>rini schrieb:</p>
<blockquote>
<p>ne das Stand auch nicht untereinander</p>
</blockquote>
<p>Aber Nexus hat danach gefragt, was oberhalb des ersteren steht. Wieso gibst du dann eine falsche Ausgabe an?<br />
Also vielleicht nochmals ganz genau. Was steht oberhalb von dem hier:</p>
<p>rini schrieb:</p>
<blockquote>
<p>1&gt;test - 1 Fehler, 1 Warnung(en)<br />
========== Erstellen: 0 erfolgreich, Fehler bei 1, 0 aktuell, 0 übersprungen ==========</p>
</blockquote>
<p>Grüssli</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1680456</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1680456</guid><dc:creator><![CDATA[Dravere]]></dc:creator><pubDate>Sun, 15 Mar 2009 16:32:30 GMT</pubDate></item><item><title><![CDATA[Reply to Was ist hier falsch? on Sun, 15 Mar 2009 16:34:29 GMT]]></title><description><![CDATA[<p>1&gt;------ Erstellen gestartet: Projekt: Hallo, Konfiguration: Debug Win32 ------<br />
1&gt;Kompilieren...<br />
1&gt;Hallo.cpp<br />
1&gt;c:\users\xxx\documents\visual studio 2008\projects\hallo\hallo\hallo.cpp(1) : warning C4627: &quot;#include &lt;windows.h&gt;&quot;: Wird bei der Suche nach Verwendung des vorkompilierten Headers übersprungen.<br />
1&gt; &quot;stdafx.h&quot; Direktive hinzufügen oder vorkompilierten Header erneut erstellen<br />
1&gt;c:\users\xxxx\documents\visual studio 2008\projects\hallo\hallo\hallo.cpp(90) : warning C4627: &quot;#include &lt;iostream&gt;&quot;: Wird bei der Suche nach Verwendung des vorkompilierten Headers übersprungen.<br />
1&gt; &quot;stdafx.h&quot; Direktive hinzufügen oder vorkompilierten Header erneut erstellen<br />
1&gt;c:\users\xxx\documents\visual studio 2008\projects\hallo\hallo\hallo.cpp(107) : fatal error C1010: Unerwartetes Dateiende während der Suche nach dem vorkompilierten Header. Haben Sie möglicherweise vergessen, im Quellcode &quot;#include &quot;stdafx.h&quot;&quot; einzufügen?<br />
1&gt;Das Buildprotokoll wurde unter &quot;file://c:\Users\xxxx\Documents\Visual Studio 2008\Projects\Hallo\Hallo\Debug\BuildLog.htm&quot; gespeichert.<br />
1&gt;Hallo - 1 Fehler, 2 Warnung(en)<br />
========== Erstellen: 0 erfolgreich, Fehler bei 1, 0 aktuell, 0 übersprungen ==========</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1680458</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1680458</guid><dc:creator><![CDATA[rini]]></dc:creator><pubDate>Sun, 15 Mar 2009 16:34:29 GMT</pubDate></item><item><title><![CDATA[Reply to Was ist hier falsch? on Sun, 15 Mar 2009 16:50:15 GMT]]></title><description><![CDATA[<p>Ersetze &quot;#include &lt;iostream&gt;&quot; durch &quot;#include &quot;stdafx.h&quot;&quot; (vorkompilierter Header), dann gehts ... oder: Erstelle ein neues leeres (!) Projekt (keine &quot;Win32-Konsolenanwendung&quot;, sonst bekommst du wieder den vorkompilierten Header aufgehetzt) - dann gehts wie es gehen soll <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title=":)"
      alt="🙂"
    /></p>
<p>Gruss<br />
Cartman</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1680464</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1680464</guid><dc:creator><![CDATA[Eric Cartman]]></dc:creator><pubDate>Sun, 15 Mar 2009 16:50:15 GMT</pubDate></item><item><title><![CDATA[Reply to Was ist hier falsch? on Sun, 15 Mar 2009 16:50:35 GMT]]></title><description><![CDATA[<p>&quot;1&gt;c:\users\xxx\documents\visual studio 2008\projects\hallo\hallo\hallo.cpp(107) : fatal error C1010: Unerwartetes Dateiende während der Suche nach dem vorkompilierten Header. Haben Sie möglicherweise vergessen, im Quellcode &quot;#include &quot;stdafx.h&quot;&quot; einzufügen? &quot;<br />
tata.</p>
<p>Was ich aber nicht ganz verstehe, was hat das zweite Programm (Brutto / Netto Berechnung) mit dem ersten zu tun?<br />
Und wenn du schon Probleme mit Zeichenliteralen hast, was nicht schlimm ist, aber ein typischer Anfängerfehler was du auch zugibst, warum beschäftigst du dich dann mit Windowsprogrammierung?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1680465</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1680465</guid><dc:creator><![CDATA[BenutzernameBenutzername]]></dc:creator><pubDate>Sun, 15 Mar 2009 16:50:35 GMT</pubDate></item><item><title><![CDATA[Reply to Was ist hier falsch? on Sun, 15 Mar 2009 18:25:19 GMT]]></title><description><![CDATA[<p>rini schrieb:</p>
<blockquote>
<p>hat kompiliert und dann kam der Fehler</p>
</blockquote>
<p>Also hat es nicht vollständig kompiliert. Wieso bringst du uns dann die Debug-Ausgabe eines Programms, das funktioniert hat? Und warum braucht es fast zwei Seiten, bis du es schaffst, die Fehlermeldung zu posten?</p>
<p>Wenn du schon Hilfe willst, können wir auch ein wenig Kooperation von dir verlangen. Dazu gehört unter anderem, das du <strong>von dir aus</strong> das Problem gut beschreibst, auf Fragen und Antworten von anderen Leuten eingehst und nicht den Eindruck machst, als sei dir sowieso alles egal. Ansonsten kommt man sich als Helfer nicht gerade ernst genommen vor. Und achte im Weiteren auf einen guten Threadtitel und [cpp]-Tags, wenn du nicht von Anfang an einen schlechten Eindruck machen willst.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1680496</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1680496</guid><dc:creator><![CDATA[Nexus]]></dc:creator><pubDate>Sun, 15 Mar 2009 18:25:19 GMT</pubDate></item><item><title><![CDATA[Reply to Was ist hier falsch? on Sun, 15 Mar 2009 23:40:20 GMT]]></title><description><![CDATA[<p>rini schrieb:</p>
<blockquote>
<p>Aber lasst es einfach ich hör einfach auf mit C++ lernen gut</p>
</blockquote>
<p>Jopp - kauf dir ne Playstation, wenn du dich auch sonst immer so anstellst...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1680626</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1680626</guid><dc:creator><![CDATA[unskilled]]></dc:creator><pubDate>Sun, 15 Mar 2009 23:40:20 GMT</pubDate></item><item><title><![CDATA[Reply to Was ist hier falsch? on Mon, 16 Mar 2009 21:04:51 GMT]]></title><description><![CDATA[<p>Wie meinst du das erstmal find ich Playstation blöd und sau teuer und zum zweiten hab ich mich jetzt ran gesetzt um mein Buch in ein paar Monaten fertig zu haben.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1681147</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1681147</guid><dc:creator><![CDATA[rini]]></dc:creator><pubDate>Mon, 16 Mar 2009 21:04:51 GMT</pubDate></item><item><title><![CDATA[Reply to Was ist hier falsch? on Mon, 16 Mar 2009 21:06:23 GMT]]></title><description><![CDATA[<p>[quote=&quot;Nexus&quot;][quote=&quot;rini&quot;]hat kompiliert und dann kam der Fehler[/quote]Also hat es nicht vollständig kompiliert. Wieso bringst du uns dann die Debug-Ausgabe eines Programms, das funktioniert hat? Und warum braucht es fast zwei Seiten, bis du es schaffst, die Fehlermeldung zu posten?</p>
<p>Wenn du schon Hilfe willst, können wir auch ein wenig Kooperation von dir verlangen. Dazu gehört unter anderem, das du <strong>von dir aus</strong> das Problem gut beschreibst, auf Fragen und Antworten von anderen Leuten eingehst und nicht den Eindruck machst, als sei dir sowieso alles egal. Ansonsten kommt man sich als Helfer nicht gerade ernst genommen vor. Und achte im Weiteren auf einen guten Threadtitel und [cpp]-Tags, wenn du nicht von Anfang an einen schlechten Eindruck machen willst.[/quote]</p>
<p>Ok ich werde deine Aussage zu Herzen nehmen</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1681150</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1681150</guid><dc:creator><![CDATA[rini]]></dc:creator><pubDate>Mon, 16 Mar 2009 21:06:23 GMT</pubDate></item><item><title><![CDATA[Reply to Was ist hier falsch? on Mon, 16 Mar 2009 21:09:21 GMT]]></title><description><![CDATA[<p>rini schrieb:</p>
<blockquote>
<p>Wie meinst du das erstmal find ich Playstation blöd und sau teuer und zum zweiten hab ich mich jetzt ran gesetzt um mein Buch in ein paar Monaten fertig zu haben.</p>
</blockquote>
<p>Lass dich nicht einschuechtern. Wenn du fleissig lernst und uebst schaffst du das auch. Geh einfach motiviert an die Sache ran und ueberstuerze nichts (auf gar keinen Fall Kapitel &quot;ueberspringen&quot;). Und bei Probleme, kannst du dich ja wieder hier melden.</p>
<p>Gruss<br />
Cartman</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1681153</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1681153</guid><dc:creator><![CDATA[Eric Cartman]]></dc:creator><pubDate>Mon, 16 Mar 2009 21:09:21 GMT</pubDate></item><item><title><![CDATA[Reply to Was ist hier falsch? on Tue, 17 Mar 2009 06:55:47 GMT]]></title><description><![CDATA[<p>Darf ich ein paar Fische in den Thread werfen? <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f644.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--face_with_rolling_eyes"
      title=":rolling_eyes:"
      alt="🙄"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1681262</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1681262</guid><dc:creator><![CDATA[LordJaxom]]></dc:creator><pubDate>Tue, 17 Mar 2009 06:55:47 GMT</pubDate></item></channel></rss>