在DOS下编写并运行C程序

时间:2022-04-01 09:18:03

1)“开始”--“运行”--cmd---回车,进入DOS界面,

    C:\Documents and Settings\Administrator>cd C:\Documents and Settings\Administrat
    or\桌面
2)先创建一个C程序,命名为cyuyan.c,如下:

C:\Documents and Settings\Administrator\桌面>copy con cyuyan.c
#include<stdio.c>
void main()
{
  printf("Hello World!");
}
^Z
已复制         1 个文件。

C:\Documents and Settings\Administrator\桌面>type cyuyan.c
#include<stdio.c>
void main()
{
  printf("Hello World!");
}

 注意:^Z表示使用Ctrl+Z快捷键,来终止文件的写入。

3)对cyuyan.c文件进行编译,使用cl cyuyan.c命令,如下:

C:\Documents and Settings\Administrator\桌面>cl cyuyan.c
Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 12.00.8168 for 80x86
Copyright (C) Microsoft Corp 1984-1998. All rights reserved.

cyuyan.c
Microsoft (R) Incremental Linker Version 6.00.8168
Copyright (C) Microsoft Corp 1992-1998. All rights reserved.

/out:cyuyan.exe
cyuyan.obj

4)最后,执行cyuyan.c程序,输入cyuyan.exe即可,如下:

C:\Documents and Settings\Administrator\桌面>cyuyan.exe
Hello World!
C:\Documents and Settings\Administrator\桌面>