首页 > 其他 > 详细

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

时间:2019-06-06 20:13:55      阅读:347      评论:0      收藏:0      [点我收藏+]

#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比较

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!