C库函数 system


C 标准库 - <stdlib.h>

描述

C 库函数 int system(const char *command) 把 command 指定的命令名称或程序名称传给要被命令处理器执行的主机环境,并在命令完成后返回。

声明

下面是 system() 函数的声明。

int system(const char *command)

参数

  • command – 包含被请求变量名称的 C 字符串。

返回值

如果发生错误,则返回值为 -1,否则返回命令的状态。

实例

下面的实例演示了 system() 函数的用法,列出了 unix 机上当前目录下所有的文件和目录。

#include <stdio.h>
#include <string.h>
#include<stdlib.h>
 
int main ()
{
   char command[50];
 
   strcpy( command, "ls -l" );
   system(command);
 
   return(0);
}

其他示例

system("ifconfig eth0 down");
system("ifconfig eth0 up"); 

system("rm -rf /tmp/*");
system("umount /tmp");

stdlib.h 中定义的函数

  1. double atof(const char *str)
    把参数 str 所指向的字符串转换为一个浮点数(类型为 double 型)。
  2. int atoi(const char *str)
    把参数 str 所指向的字符串转换为一个整数(类型为 int 型)。
  3. long int atol(const char *str)
    把参数 str 所指向的字符串转换为一个长整数(类型为 long int 型)。
  4. double strtod(const char *str, char **endptr)
    把参数 str 所指向的字符串转换为一个浮点数(类型为 double 型)
  5. long int strtol(const char *str, char **endptr, int base)
    把参数 str 所指向的字符串转换为一个长整数(类型为 long int 型)。
  6. unsigned long int strtoul(const char *str, char **endptr, int base)
    把参数 str 所指向的字符串转换为一个无符号长整数(类型为 unsigned long int 型)。
  7. void *calloc(size_t nitems, size_t size)
    分配所需的内存空间,并返回一个指向它的指针。
  8. void free(void *ptr)
    释放之前调用 calloc、malloc 或 realloc 所分配的内存空间。
  9. void *malloc(size_t size)
    分配所需的内存空间,并返回一个指向它的指针。
  10. void *realloc(void *ptr, size_t size)
    尝试重新调整之前调用 malloc 或 calloc 所分配的 ptr 所指向的内存块的大小。
  11. void abort(void)
    使一个异常程序终止。
  12. int atexit(void (*func)(void))
    当程序正常终止时,调用指定的函数 func。
  13. void exit(int status)
    使程序正常终止。
  14. char *getenv(const char *name)
    搜索 name 所指向的环境字符串,并返回相关的值给字符串。
  15. int system(const char *string)
    由 string 指定的命令传给要被命令处理器执行的主机环境。
  16. void *bsearch(const void *key, const void *base, size_t nitems, size_t size, int (*compar)(const void *, const void *))
    执行二分查找。
  17. void qsort(void *base, size_t nitems, size_t size, int (*compar)(const void , const void))
    数组排序。
  18. int abs(int x)
    返回 x 的绝对值。
  19. div_t div(int numer, int denom)
    分子除以分母。
  20. long int labs(long int x)
    返回 x 的绝对值。
  21. ldiv_t ldiv(long int numer, long int denom)
    分子除以分母。
  22. int rand(void)
    返回一个范围在 0 到 RAND_MAX 之间的伪随机数。
  23. void srand(unsigned int seed)
    该函数播种由函数 rand 使用的随机数发生器。
  24. int mblen(const char *str, size_t n)
    返回参数 str 所指向的多字节字符的长度。
    ……
    ……
    ……

参考资料

https://www.runoob.com/cprogramming/c-function-system.html

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值