码迷,mamicode.com
首页 > 编程语言 > 详细

C语言学习笔记(二)_system系统调用及posix说明

时间:2017-01-06 01:18:36      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:库函数   执行   成功   需要   main   pad   函数   class   not   

  1.9 System系统调用

   System库函数的功能是执行操作系统的命令或者运行指定的程序。system库函数的调用需要#include<stdlib.h>这个头文件。

#include <stdlib.h>


int main()
{
    system("notepad");
    return 0;//return 0 代表执行成功,return -1 代表执行失败
}

  1.9.2 POSIX

  写代码尽量使用支持POSIX的库函数

C语言学习笔记(二)_system系统调用及posix说明

标签:库函数   执行   成功   需要   main   pad   函数   class   not   

原文地址:http://www.cnblogs.com/wuchuanying/p/6254440.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!