发布网友 发布时间:2024-02-09 17:42
共3个回答
热心网友 时间:2024-04-22 11:24
1、system函数:
原型:int system(const char * command);
功能:执行 dos(windows系统) 或 shell(Linux/Unix系统) 命令,参数字符串command为命令名;
说明:在windows系统中,system函数直接在控制台调用一个command命令。在Linux/Unix系统中,system函数会调用fork函数产生子进程,由子进程来执行command命令,命令执行完后随即返回原调用的进程;
头文件:stdlib.h;
返回值:命令执行成功返回0,执行失败返回-1。
2、例程:
热心网友 时间:2024-04-22 11:20
输入字符串即可。热心网友 时间:2024-04-22 11:24
#include<stdio.h>结果:
~/test$ ./a.out
192.168.0.200
arr:ping 192.168.0.200
PING 192.168.0.200 (192.168.0.200) 56(84) bytes of data.
64 bytes from 192.168.0.200: icmp_req=1 ttl=64 time=0.090 ms
64 bytes from 192.168.0.200: icmp_req=2 ttl=64 time=0.028 ms
64 bytes from 192.168.0.200: icmp_req=3 ttl=64 time=0.040 ms