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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T18:59:08+00:00 2026-06-17T18:59:08+00:00

I want to transfer some parameters from one program to another. For example, here

  • 0

I want to transfer some parameters from one program to another.

For example, here are two programs. a.c compiled as a

#include <stdio.h>

int main() {
    char a[10];
    scanf("%s", a);
    printf("%s\n", a);
    return 0;
}

and e.c compiled as e:

#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>

int main() {
    char *input = "here it is";
    execl("./a", "a", "a",  NULL);
    return 0;
}

Actually, I would like to transfer the parameter “a” from the e.c to a.c so that once I execute the program “e”, it will print out

 a
 a

However, I find out that excel cannot pass the parameters to the specified program.

If I cannot modify the program a.c, how can I execute this program using another program using standard input?

  • 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-17T18:59:09+00:00Added an answer on June 17, 2026 at 6:59 pm

    If you can’t modify a.c, then you’ll need to write the data to some file, then reset stdin to read from that file:

    FILE *fp = fopen("somefile", "w");
    if (fp == NULL)
        // handle error
    fputs(input, fp);
    fclose(fp);
    
    if (freopen("somefile", "r", stdin) == NULL)
        // handle error
    unlink("somefile");
    execl("./a", "a", NULL);
    

    The unlink system call makes sure the file disappears when a is done with it.

    Note: you might be able to use a pipe instead of a file, because the message is so small that it will fit inside a pipe’s buffer. That’s not a reliable solution for larger messages, though — if you want to use a pipe, you need to fork.

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

Sidebar

Related Questions

I want to transfer some log files from one folder to another in Ubuntu
I want to transfer BusinessObjects from one PC to another. If I think about
I want to transfer a data from one webpage to another page. But I
In my java application I want to transfer some Images from client to server.
I want to transfer one asp.net page form values to another page when i
I want transfer some data from page attributes as GET Request data. URL for
I want to transfer XML from client to some server using FTP . What
I want to transfer from the index.html page to another page I made a
I want transfer some data between 2 tables from difference DBs But the source
I want to transfer data(21M rows) from mysql database to DynamoDB. I am using

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.