用VC++6.0编C语言的问题

来源:百度知道 编辑:UC知道 时间:2024/06/06 14:53:41
写好C语言后编译运行,就显示下面的信息,不知道什么回事???
Loaded 'ntdll.dll', no matching symbolic information found.
Loaded 'C:\WINDOWS\system32\kernel32.dll', no matching symbolic information found.
The thread 0x1278 has exited with code 1 (0x1).
The program 'C:\Documents and Settings\dddd\Debug\ffh.exe' has exited with code 1 (0x1).

你在创建工程时应选择win32 console application
然后新建文件,写上xx.c
后面的“.c”不能少。

提示信息,第一句是ntdll.dll没有发现调试符号信息,那是windows系统的东西当然没有调试信息。
第二个也一样,下边两条是线程结束和进程结束的通知,都是正常的

不知道你要问的是什么
你点了调试后出来的信息都是正常的
若要运行程序,请按Ctrl+F5