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; }