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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T15:47:11+00:00 2026-06-05T15:47:11+00:00

Is there a way to modify the printf in order to output string on

  • 0

Is there a way to modify the printf in order to output string on a file rather than to the console?

I tried looking up something on the Internet and found calls like dup, dup2 and fflush that might be associated with this.

EDIT:

Maybe I wasn’t clear.. the thing is that this was in a C exam question.. the question is as follows:

Explain how a program that normally output strings to screen (using printf()) can be made to output string to a file, without changing any code in the mentioned program.

  • 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-05T15:47:13+00:00Added an answer on June 5, 2026 at 3:47 pm

    This is usually done with I/O-redirection (… >file).

    Check this little program:

    #include <stdio.h>
    #include <unistd.h>
    
    int main (int argc, char *argv[]) {
        if (isatty (fileno (stdout)))
            fprintf (stderr, "output goes to terminal\n");
        else
            fprintf (stderr, "output goes to file\n");
    
        return 0;
    }
    
    ottj@NBL3-AEY55:~ $ ./x
    output goes to terminal
    ottj@NBL3-AEY55:~ $ ./x >yy
    output goes to file
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there way to get file from windows xp command prompt? I tried to
Is there any way to modify the CSS properties of one table's cells based
is there a simple way to modify the InnerXml of a XElement? supose we
In git, is there any (simple) way to modify the index so that only
Is there a way to allow admins to modify the content of simple static
Is there an easy-ish way to modify the webform-form-tpl.php template to show disclaimer text
Is there way to automatically maximize the output window on hitting build and then
Is there way to copy a file into Plone with WebDAV and have Plone
Is there any way to MODIFY ( NOT replace) a middleware in rails? So
Is there a way to iterate through a text file using the syntax, with

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.