What is the output of the following code?
#include <stdio.h>
#include <unistd.h>
int main()
{
if (fork() || fork())
fork();
printf("1 ");
return 0;
}
What is the output of the following code?
#include <stdio.h>
#include <unistd.h>
int main()
{
if (fork() || fork())
fork();
printf("1 ");
return 0;
}
* השאלה נוספה בתאריך: 20-07-2020