编写一个程序,程序中创建一个子进程,然后父子进程各自独立运行。_百 ...
发布网友
发布时间:2024-02-01 02:02
我来回答
共4个回答
热心网友
时间:2024-04-10 02:01
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#define BUFSIZE 10
int main(void)
{
char ch,dh,eh;
int p[2];//文件描述符
pid_t childpid;
if(pipe(p) == -1)//创建管道
{
perror("pipe call");
return -1;
}
if((childpid = fork()) == -1)//创建子进程
{
perror("fork call");
return -1;
}
if(childpid!=0)//父进程
{
close(p[0]);//关闭读文件
do
{
ch = getchar();
write(p[1],&ch,1);//向管道写
}while(ch!='x');//遇到'x'则结束
}
else if(childpid==0)//子进程
{
close(p[1]);//关闭写文件
while(1)
{
read(p[0],&dh,1);//从管道读
if(dh == 'x')
{
printf("\n");
return 0;
}
else if(dh>='a'&&dh<='z')
{
eh = (char)((int)dh - 32);//转化成大写输出
printf("%c",eh);
}
else {
printf("%c",dh);
}
}
}
}
热心网友
时间:2024-04-10 01:59
同求
热心网友
时间:2024-04-10 02:01
windows还是linux?
热心网友
时间:2024-04-10 02:00
比如有一个下拉框定义如下:
<asp:dropdownlist id="ddlBusCode" runat="server"></asp:dropdownlist>
那么可以利用以下方法来获取值:
方法一:
var ddl = document.getElementById("ddlBusCode")
var index = ddl.seletedIndex;
var Value = ddl.options[index].value;
var Text = ddl.options[index].text;
方法二:
var aaa=ddlBusCode.options[this.selectedIndex].value;