用vc编写源代码编译成.obj后,如何编成.exe可操作程序?
2个回答
展开全部
把你的.c文件放到桌面,例如是hello.c。进入DOS,使用如下命令:
1)cd D:\Documents and Settings\xnc_pc1\桌面 (这个命令是进入桌面)
2)cl hello.c (使用命令“CL hello.c”也可以)
3)hello.exe
当然,你要保证你的C程序是正确的,没有error和warning。
下面是hello.c文件
#include<stdio.h>
void main()
{ printf("Hello,C!"); }
“开始”---“运行”---“cmd”--回车,进入DOS
D:\Documents and Settings\xnc_pc1>cd D:\Documents and Settings\xnc_pc1\桌面
D:\Documents and Settings\xnc_pc1\桌面>cl hello.c
Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 12.00.8168 for 80x86
Copyright (C) Microsoft Corp 1984-1998. All rights reserved.
hello.c
Microsoft (R) Incremental Linker Version 6.00.8168
Copyright (C) Microsoft Corp 1992-1998. All rights reserved.
/out:hello.exe
hello.obj
D:\Documents and Settings\xnc_pc1\桌面>hello.exe
Hello,C!
D:\Documents and Settings\xnc_pc1\桌面>
1)cd D:\Documents and Settings\xnc_pc1\桌面 (这个命令是进入桌面)
2)cl hello.c (使用命令“CL hello.c”也可以)
3)hello.exe
当然,你要保证你的C程序是正确的,没有error和warning。
下面是hello.c文件
#include<stdio.h>
void main()
{ printf("Hello,C!"); }
“开始”---“运行”---“cmd”--回车,进入DOS
D:\Documents and Settings\xnc_pc1>cd D:\Documents and Settings\xnc_pc1\桌面
D:\Documents and Settings\xnc_pc1\桌面>cl hello.c
Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 12.00.8168 for 80x86
Copyright (C) Microsoft Corp 1984-1998. All rights reserved.
hello.c
Microsoft (R) Incremental Linker Version 6.00.8168
Copyright (C) Microsoft Corp 1992-1998. All rights reserved.
/out:hello.exe
hello.obj
D:\Documents and Settings\xnc_pc1\桌面>hello.exe
Hello,C!
D:\Documents and Settings\xnc_pc1\桌面>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询