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

List of top Operating System Questions on Process Creation and the fork() System Call asked in GATE CS

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