This commit is contained in:
2025-12-01 11:43:29 +01:00
parent 1e70a6407d
commit 040f9566df
6 changed files with 18 additions and 18 deletions

6
pa-06/a2/b.c Normal file
View File

@@ -0,0 +1,6 @@
#include <stdio.h>
#include <unistd.h>
int main(void) {
printf("Guten %d Tag %d\n", fork(), fork());
return 0;
}