Informatik/Assets/Betriebssysteme_uebung/u2-anlage/u2-a1-anlage/p1.c
2021-03-01 16:39:46 +01:00

12 lines
212 B
C

#include <stdio.h>
#include <unistd.h>
int main()
{
printf("%d: code before forking - executed once only\n", getpid());
fork();
printf("%d: code after forking - executed by each process\n", getpid());
}