This commit is contained in:
2025-12-01 11:43:22 +01:00
parent bee4a89873
commit 1e70a6407d
27 changed files with 805 additions and 38 deletions

6
pa-06/a1/a.c Normal file
View File

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