Merge branch 'master' of github.com:bregman-arie/devops-exercises

This commit is contained in:
abregman
2021-09-27 00:35:06 +03:00
4 changed files with 40 additions and 10 deletions

View File

@@ -4,12 +4,12 @@ Answer the questions given the following program (without running it):
```
#include<stdio.h>
#include <unistd.h>
int main()
{
fork();
printf("\nyay\n");
return 0;
fork();
printf("\nyay\n");
return 0;
}
```

View File

@@ -4,13 +4,14 @@ Answer the questions given the following program (without running it):
```
#include<stdio.h>
#include <unistd.h>
int main()
{
fork();
fork();
printf("\nyay\n");
return 0;
fork();
fork();
printf("\nyay\n");
return 0;
}
```