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 8029477
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T00:26:52+00:00 2026-06-05T00:26:52+00:00

I came across some test code which is giving different output when executed on

  • 0

I came across some test code which is giving different output when executed on terminal directly and when its output is redirected to a file:

# include <stdio.h>
# include <stdlib.h>
int main()
{
     printf("hello\n");
     if(fork() ==0)
     {
            printf("world\n");
     }
}

On the terminal the output is:

abhi@ubuntu:~/Desktop/ad/A1/CC$ ./vb
hello
abhi@ubuntu:~/Desktop/ad/A1/CC$ world

(The cursor is still blinking after printing world & normal prompt is shown after enter is pressed.)

On redirecting output to a file:

./vb >v.txt
 abhi@ubuntu:~/Desktop/ad/A1/CC$ cat v.txt 
 hello
 hello
 world

As far as I understand the parent is not waiting for child it prints hello & returns. The child then should print world and the code should terminate.

What I am not able to understand is why the code is behaving differently when its output is redirected. What is the cause of this?

  • 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-06-05T00:26:54+00:00Added an answer on June 5, 2026 at 12:26 am

    When stdout is redirected to a file, it’s not line buffered. When it’s a tty, it is. So when writing to a tty the printf immediately writes to stdout and “that’s all she wrote”.

    But when stdout is redirected to a file "hello\n" remains in the stdio buffer. When you fork, both processes (both the child and the parent) end up with a copy of the stdio buffers, which they flush at exit.


    Off-topic: in my opinion o/p is a really really bad way to write “output” – I hate it with the white-hot intensity of a thousand suns.

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

Sidebar

Related Questions

I recently came across some code like this: parent && parent.removeChild(this); Which takes the
Came across some code today that had a javascript array, made in php, using
I came across some code today that looks like this: subroutine sub(hello,world,this,routine,takes,a, & &
I came across some legacy code that contains a function like this: LPCTSTR returnString()
Context I came across some code, like this: if( Some_Condition ) throw 0; I
I have been reading over some code lately and came across some lines such
So, I came across some code that is supposed to help me to update
I was going through some random java code and came across this peice of
While refactoring some code, I came across this strange compile error: The constructor call
I am trying to get some code working from an example I came across.

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.