int status; wait(&status); cout << "return code = " << WEXITSTATUS(status) << endl;
为什么返回码不能存储在int变量中?为什么必须使用函数WEXITSTATUS进行转换?未转换的int变量的值代表什么?
W宏用于从int提取各种信息.