Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
31 lines (26 loc) · 673 Bytes

File metadata and controls

31 lines (26 loc) · 673 Bytes
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#include<unistd.h>
#include<fcntl.h>
#include<sys/types.h>
#include<sys/stat.h>
#include<sys/wait.h>
#include<iostream>
using namespace std;
int main(){
pid_t q;
cout << "before fork" << endl;
q = fork();
if(q<0){
cout << "error" << endl;
}
else if(q == 0){
cout << "I am child having pid " << getpid() << endl;
cout << "My parent's pid is " << getppid() << endl;
}
else{
wait(NULL);
// sleep(1);
cout << "I am parent having pid " << getpid() << endl;
cout << "My Child's pid is " << q << endl;
}
cout << "common" << endl;
}
Morty Proxy This is a proxified and sanitized view of the page, visit original site.