15 lines
236 B
C++
15 lines
236 B
C++
|
using namespace std;
|
||
|
#include <iostream>
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <sys/types.h>
|
||
|
#include <unistd.h>
|
||
|
int main(int argc, char * argv[])
|
||
|
{
|
||
|
if (fork ( ) > 0)
|
||
|
{
|
||
|
printf("parent\n");
|
||
|
sleep(50);
|
||
|
}
|
||
|
}
|