Skip to content
Snippets Groups Projects
Commit 3d1dc29d authored by Manoj Kuamr's avatar Manoj Kuamr
Browse files

New file added

parent c1e1e136
No related branches found
No related tags found
No related merge requests found
getpid.c 0 → 100644
#include<stdio.h>
#include<sys/types.h>
int main() ??<
printf("Before Forking\n");
fork();
printf("After Forking\n");
printf("process ID = %d\n",getpid());
??>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment