c语言system函数用法

c语言system函数用法,第1张

c语言是常用的编程语言,也是很多人接触和学过的,今天就来介绍下c语言中system函数的用法。

软件:Dev-C++ 5.11

电脑:华为MateBook14

系统:Windows10

1、c语言中system函数可以调用DOS命令,在使用这个函数之后,首先要给程序添加#include <process.h>的头文件,如下图所示

2、然后,可以先将main函数补充完整,接下来只需要在这个函数中写代码就可以了,如下图所示。

3、System函数可以直接使用,其参数就是需要执行的DOS命令,如下图所示,是用system函数来执行dos中的dir命令。

4、先调试程序,成功之后,点击“运行”程序,如下图所示。

5、这样,就在c语言中使用system函数执行了DOS命令,如下图所示。

分类: 电脑/网络 >>程序设计 >>其他编程语言

问题描述:

在下P转C,只有一周时间准备学校的程序设计大赛,所以问的题目比较弱....

C语言里面的SYSTEM函数怎么使用?

希望全面一点。

解析:

The system function passes mand to the mand interpreter, which executes the string as an operating-system mand. system refers to the COMSPEC and PATH environment variables that locate the mand-interpreter file (the file named CMD.EXE in Windows NT). If mand is NULL, the function simply checks to see whether the mand interpreter exists.

Example

/* SYSTEM.C: This program uses

* system to TYPE its source file.

*/

#include <process.h>

void main( void )

{

system("ipconfig/all")

}

Output

/* SYSTEM.C: This program uses

* system to TYPE its source file.

*/

#include <process.h>

void main( void )

{

system("ipconfig/all")

}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/12133274.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-21
下一篇 2023-05-21

发表评论

登录后才能评论

评论列表(0条)

保存