#include <stdio.h>
#include <unistd.h>
using namespace std;
int main()
{
pid_t pid;
pid=fork();
if(pid==-1){
printf("error");
}
if(pid) { printf("padre %d",pid);
}else{
printf("hijito de mama");
}
}
miércoles, 24 de abril de 2013
Suscribirse a:
Entradas (Atom)