Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6684349
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T04:55:47+00:00 2026-05-26T04:55:47+00:00

I am learning process forking and I’m trying the code of listing 3: sunbox$

  • 0

I am learning process forking and I’m trying the code of listing 3:

sunbox$ cat fork2.c
#include <unistd.h>
#include <stdio.h>

int main (void) {

        pid_t p;

        printf("Original program, pid=%d\n", getpid());
        p = fork();
        if (p == 0) {
                printf("In child process, pid=%d, ppid=%d\n",
                        getpid(), getppid());
        } else {
                printf("In parent, pid=%d, fork returned=%d\n",
                        getpid(), p);
        }
}

sunbox$ gcc fork2.c -o fork2
sunbox$ ./fork2
Original program, pid=767
In child process, pid=768, ppid=767
In parent, pid=767, fork returned=768

The output I get:

Original program, pid=2728 
In parent, pid=2728, fork returned=2731
In child process, pid=2731, ppid=2728

Whereas the sample page shows an output of child first, and then parent? I don’t understand this.

Also, when I run the code in my college lab I get output as shown on the page. Thanks a lot in advance for troubling to answer this naive question.

If it matters, I’m running Ubuntu 11.04.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T04:55:48+00:00Added an answer on May 26, 2026 at 4:55 am

    After the fork() system call, it is up to the OS scheduler which process continues first. It is possible that repeated runs of this same program would result in different orders.

    This is called non-determinism.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm very early in the iPhone development learning process. I'm trying to get my
I'm in the process of learning Scheme. I recently spent (too much!) time trying
I'm trying to pick up Python. As part of the learning process I'm porting
As part of my EXTJS 4 learning process, I am trying to establish a
I'm in the process of learning Javascript and I'm trying to create a simple
I'm using firefox as my default browser for my basic webdev learning process and
I'm in the process of learning Erlang. As an exercise I picked up the
I am in the process of learning JavaFX and I am looking for a
Im in the process of learning asp.net 3.5, currently on webparts and co. Ive
I'm in the process of learning WPF coming from WinForms development. I have a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.