What does it mean to write to stdout in C?

231,774

Solution 1

That means that you are printing output on the main output device for the session... whatever that may be. The user's console, a tty session, a file or who knows what. What that device may be varies depending on how the program is being run and from where.

The following command will write to the standard output device (stdout)...

printf( "hello world\n" );

Which is just another way, in essence, of doing this...

fprintf( stdout, "hello world\n" );

In which case stdout is a pointer to a FILE stream that represents the default output device for the application. You could also use

fprintf( stderr, "that didn't go well\n" );

in which case you would be sending the output to the standard error output device for the application which may, or may not, be the same as stdout -- as with stdout, stderr is a pointer to a FILE stream representing the default output device for error messages.

Solution 2

It depends.

When you commit to sending output to stdout, you're basically leaving it up to the user to decide where that output should go.

If you use printf(...) (or the equivalent fprintf(stdout, ...)), you're sending the output to stdout, but where that actually ends up can depend on how I invoke your program.

If I launch your program from my console like this, I'll see output on my console:

$ prog
Hello, World! # <-- output is here on my console

However, I might launch the program like this, producing no output on the console:

$ prog > hello.txt

but I would now have a file "hello.txt" with the text "Hello, World!" inside, thanks to the shell's redirection feature.

Who knows – I might even hook up some other device and the output could go there. The point is that when you decide to print to stdout (e.g. by using printf()), then you won't exactly know where it will go until you see how the process is launched or used.

Solution 3

stdout is the standard output file stream. Obviously, it's first and default pointer to output is the screen, however you can point it to a file as desired!

Please read:

http://www.cplusplus.com/reference/cstdio/stdout/

C++ is very similar to C however, object oriented.

Solution 4

stdout is the standard output stream in UNIX. See http://www.gnu.org/software/libc/manual/html_node/Standard-Streams.html#Standard-Streams. When running in a terminal, you will see data written to stdout in the terminal and you can redirect it as you choose.

Solution 5

stdout stands for standard output stream and it is a stream which is available to your program by the operating system itself. It is already available to your program from the beginning together with stdin and stderr.

What they point to (or from) can be anything, actually the stream just provides your program an object that can be used as an interface to send or retrieve data. By default it is usually the terminal but it can be redirected wherever you want: a file, to a pipe goint to another process and so on.

Share:
231,774
Acroyear
Author by

Acroyear

Updated on July 09, 2022

Comments

  • Acroyear
    Acroyear almost 2 years

    Does a program that writes to "stdout" write to a file? the screen? I don't understand what it means to write to stdout.

  • Acroyear
    Acroyear about 11 years
    Is there an example in C of the command to write to stdout? Is a simple printf statement write to stdout? What about writing to a file with write()?
  • Jack
    Jack about 11 years
    printf by default writes on stdout, if you want to write to a specific stream you should use fprintf which accepts a FILE* as the destination stream.
  • canhazbits
    canhazbits about 11 years
    Also it's "std" out because it's called "standard" output. As opposed to stdin or "standard input", stderr for "standard" error.
  • Gabriel Staples
    Gabriel Staples over 6 years
    I wrote an addendum on how to force a flush of the buffer with fflush(stdout) here: stackoverflow.com/a/48551850/4561887