Mein TC geht nicht mehr WICHTIG
-
Ich habe Montag meine ABschlussprüfung in Programmieren und jetzt läuft mein Turbo C++ nicht mehr.
DIe VErsion war 3.0. ALlerdings wenn ich jetzten neues programm schreiben will kommt jede malCompiling Arbeiter.cpp: Linking Work\Arbeiter.exe: Linker Error: Undefined Symbol _main in module c0.asm
ich bitte um schnelle Hilfe. Ich find eua keine enue VErsion dafür im Netz. Wenn jemand eine hat bitte Link geben oder kann mir evtl jemand sagen warum diese Meldung aus dem nichts komt. Auch wenn ich ihn jetzt überinstallieren geht die nicht weg...
-
Wenn es so dringend ist steig halt auf einen anderen Compiler um, den GCC z. B.... findest du mit IDE unter www.bloodshed.net. TC ist sowieso ziemlich out of date
-
Die IDE Dev-C++ ist wirklich empfehlenswert.
-
-
K THX THX... habs neu installiert aber is immer noch der gleiche Fehler... und kommt egal wie oft ich neu installiere oder wohin ich installiere jedes mal wenn ich ein Prog zum laufen bringen will. Das Prob is das ich mit dem Compiler meine Prüfung schreibe und KA wie ich das jetzt weg kriege...
-
Zeig mal bitte nen Code wo ein Fehler entsteht ???
P.S.: Wir benutzten zurzeit auch noch TC im Unterricht
-
Q: I am getting "Linker Error: Undefined symbol _main in module c0.ASM." What does it mean?
A: In Borland C++, there are 2 reasons why you could get this error:
1. Your program is missing the "main()" function, thus the compiler doesn't know where is your programs entry point.
2. You may get this error if you compile your program with the Pascal calling convention. In this case add "_cdecl" parameter before your main program. The startup code used by all programs is created using the conventional C calling sequence. And since Pascal changes function names by capitalizing all letter and since Pascal doesn't use '_' the startup code will not find the expected _main function but MAIN which are not compatible.
http://165.98.241.175/Pronica/faq.html
wo ist deine mainfunktion?
wie sieht die aus?
bye
-
PAcduke schrieb:
Compiling Arbeiter.cpp: Linking Work\Arbeiter.exe: Linker Error: Undefined Symbol _main in module c0.asm
--> Der Fehler kommt eigentlich wenn du kein main() in deinem Prog hast ...