1. >Operating System
Found 1  QuestionSET DEFAULT
Selected Filters
    Operating System Process Creation and the fork() System...
Exams
Subjects
Topics

List of top Operating System Questions on Process Creation and the fork() System Call

Consider the following program snippet. Assume that the program compiles and runs successfully. Further, assume that the fork() system call is always successful in creating a process.
int main () {
   int i;
   for (i = 0; i < 3; i++){
      if (fork() == 0){
        continue;
      }
      break;
   }
   printf("Hello!");
   return 0;
}
The total number of times that the printf statement gets executed is ________.
  • GATE CS - 2026
  • GATE CS
  • Operating System
  • Process Creation and the fork() System Call