关于C语言调试

来源:百度知道 编辑:UC知道 时间:2024/05/10 10:45:06
'test.exe': Loaded 'G:\! 最近任务\Visual Studio 2008\Projects\test\Debug\test.exe', Symbols loaded.
'test.exe': Loaded 'C:\WINDOWS\system32\ntdll.dll'
'test.exe': Loaded 'C:\WINDOWS\system32\kernel32.dll'
'test.exe': Loaded 'C:\WINDOWS\WinSxS\x86_Microsoft.VC90.DebugCRT_1fc8b3b9a1e18e3b_9.0.21022.8_x-ww_597c3456\msvcr90d.dll'
The program '[3140] test.exe: Native' has exited with code 0 (0x0).
/-----------------------以上是什么意思?
Fixend,我还想随便问一下,VC2008怎么调试了看不到结果呢?

这是正常信息,列出了调试时候加载了的dll文件。

The program '[3140] test.exe: Native' has exited with code 0 (0x0)

说明程序正常结束,没有错误。
另外,如果你想停在某个地方,请在相应的代码行里面设置断点,或者用单步调试。