unable to run program file !
-
Wenn ich bei DEV-C++ 4.9.8.0. auf Compiler drücke, kommt die Meldung: unable to run program file !
Das Programm(Hello.cpp)ist aber in Ordnung#include <iostream>
using namespace std;
int main (int argc, char *argv[])
{
char quit;quit = '\0';
while (quit != 'q')
{
cout << "Hello ! This is a console app." << endl;
cout << "To create a console, go to Project Options and select" << endl;
cout << "\'Win32 Console\'." << endl;
cout << "Press q to quit " << endl;
cin >> quit;
}return 0;
}Was kann das sein ?
-
Hi
An deiner stelle würde ich das ganze erst einmal zu kompilieren !
Am besten klickst du auf Ausführen bzw. Run -> dann auf Compilieren und Ausführen bzw. Compile & Run!
C U DeRauFDieSPRüNGeHeLFeR
-
Aber genau dann, wenn ich auf compilieren drücke, kommt ja diese Meldung.
So sieht der Compiler Log aus:Compiler: Default compiler
Building Makefile: "D:\C++\Dev-Cpp\Examples\Hello\Makefile.win"
Führt make... aus
make.exe -f "D:\C++\Dev-Cpp\Examples\Hello\Makefile.win" all
Ausführung beendetund warum macht make.exe eine .win Datei ?
Gibt es Dinge, die man bei der Erstellung beachten muß?
z.B. bei Ressourcen ,Quelldateien oder Verzeichnisstrukturen wie bin,lib oder inc
-
Hi,
Das liegt an Dev-C++. 4.9.8.0 ist ja auch nur eine beta.
Hol dir 4.0 (& upgrade zu 4.01)
-
thread verschoben ins Andere Compilier Forum Andere Compiler