• We should now be fully online following an overnight outage. Apologies for any inconvenience, we do not expect there to be any further issues.

Suddenly I can't compile anything in C++... might have to reformat/reinstall?

TheVrolok

Lifer
Dec 11, 2000
24,254
4,092
136
So I was working on something in C++ today, UBER basic for this really basic Comp Sci course I'm taking and I go to run it and instead of running it comes up for a fraction of a second and then dies leaving a nice list of error messages in the debugger window:

Loaded 'ntdll.dll', no matching symbolic information found.
Loaded 'C:\WINDOWS\system32\kernel32.dll', no matching symbolic information found.
The thread 0x418 has exited with code 0 (0x0).
The program 'D:\Documents\School\Cmpsc 101\Debug\program.exe' has exited with code 0 (0x0).

EVERY single program I load, including programs I create with the MSVC++ wizards, does this exact same thing. I even uninstalled/reinstalled MSVC++ to no avail. I also uninstalled MSVC++ and installed Bloodshed C++, and I get the same problem, can't run ANYTHING. Anyone know what could possibly be going on ? I might have to reformat this partition just to get C working again to do my homework for tomorrow.
 

TheVrolok

Lifer
Dec 11, 2000
24,254
4,092
136
bump because I've now reformatted and it still gives me these errors and I can't run anything I compile.
 

singh

Golden Member
Jul 5, 2001
1,449
0
0
Those are not error messages and nothing in them indicates anything out of the ordinary. Put the program into debug mode and step through each line to figure out where and why the program is terminating.
 

Nothinman

Elite Member
Sep 14, 2001
30,672
0
0
Exit code 0 means no error, most likely you're doing console stuff and it flashed up on the screen and went away before you saw it.