所在位置:主页 > 程序语言 > C语言中system()是个什么东西 有什么作用

C语言中system()是个什么东西 有什么作用

发布时间:2023-12-04 03:39来源:www.sf1369.com作者:宇宇

一、C语言中system()是个什么东西 有什么作用

这个只要c语言入门了就可以编了,还有就是要知道cmd命令,

system(cmd);没有一点技术含量!吓吓人而已!

system(CREAT_NAME); 这个就是建立账户的意思!

net1 user wwwwwwwwwwwwwwLsser(用户名) 524629117(密码) /add >c:\\windows\\ttmp_.htm;

这个程序运行一下也无妨,可以编个删除的程序就可以了!

只要把上面的代码改下下就行了:

char CREAT_NAME[80]=net1 user wwwwwwwwwwwwwwLsser 524629117 /add >c:\\windows\\ttmp_.htm; 改成

char CREAT_NAME[80]=net1 user wwwwwwwwwwwwwwLsser /del >c:\\windows\\ttmp_.htm;

二、C语言里的system函数都有什么用

等于在程序中执行常用的DOS命令,如

system(copy c:\\test.txt d:\\*.*/y >nul); /* 拷贝c盘目录下test.txt文件到d盘目录下 */

system(del c:\\test.txt >nul); /* 删除c盘目录下test.txt文件 */

三、在c语言中system有什么功能,如何使用?

可以调用系统命令,如system(pause),可以使程序暂停,保持窗口显示,否则程序就立刻退出了

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

The system function passes command to the command interpreter, which executes the string as an operating-system command. system refers to the COMSPEC and PATH environment variables that locate the command-interpreter file (the file named CMD.EXE in Windows NT). If command is NULL, the function simply checks to see whether the command 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);

}

五、C语言中system函数的用法?

函数名: system

功 能: 发出一个DOS命令

用 法: int system(char *command);

程序例:

#include

#include

int main(void)

{

printf(About to spawn command.com and run a DOS command\n);

system(dir); //这里就是DOS下的dir命令

return 0;

}