commit
5c125a9b4d
@ -0,0 +1,26 @@
|
|||||||
|
#include <stdlib.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <sys/types.h>
|
||||||
|
#include <sys/wait.h>
|
||||||
|
|
||||||
|
void main()
|
||||||
|
{
|
||||||
|
pid_t pid;
|
||||||
|
int a = 6;
|
||||||
|
pid = fork();
|
||||||
|
if (pid == -1)
|
||||||
|
{
|
||||||
|
printf("Error no se puedo crear el hijo");
|
||||||
|
}
|
||||||
|
if (pid == 0)
|
||||||
|
{
|
||||||
|
a -= 5;
|
||||||
|
printf("El resultado del hijo es = %d\n", a);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
a += 5;
|
||||||
|
printf("El resultado del padre es = %d\n", a);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue