#include "unistd.h"
#include "sys/types.h"
int main()
{
int tub[2];
char msg[256];
pid_t pid;
int status;
pipe(tub);
pid = fork();
if (pid !=0) {
// El padre
write(tub[0], "Soy padre.\n", 12);
}
else {
// El hijo
read(tub[1], msg, 256) ;
printf("Hijo > %s", msg);
}
}
No comments:
Post a Comment