99c4e02ecf
Name it instead "topics" so it won't be strange if some topics included "exercises" directory.
280 B
280 B
Fork 101
Answer the questions given the following program (without running it):
#include<stdio.h>
#include <unistd.h>
int main()
{
fork();
printf("\nyay\n");
return 0;
}
- How many times the word "yay" will be printed?
- How many processes will be created?