码迷,mamicode.com
首页 > 其他好文 > 详细

pclose返回值为什么要和256比较

时间:2019-06-06 20:51:56      阅读:350      评论:0      收藏:0      [点我收藏+]

标签:程序   ted   tst   else   ring   amp   ==   main   return   

#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#include <unistd.h>

int main(int argc, char *argv[])
{
int status;
pid_t pid;

  pid = fork();

  if (0 == pid)
  {
      exit(atoi(argv[1]));
  } else 
  {
      wait(&status);
      printf("status = %d\n", status);
      if (WIFEXITED(status))
      {
          printf("WEXITSTATUS(status)=%d\n", WEXITSTATUS(status));
      }
  }

  return 0;

}
该程序运行结果
技术图片

pclose的返回值就是这里wait(&status)中status的值。

pclose返回值为什么要和256比较

标签:程序   ted   tst   else   ring   amp   ==   main   return   

原文地址:https://www.cnblogs.com/huyang892/p/10986385.html

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