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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T02:23:34+00:00 2026-06-13T02:23:34+00:00

I know when we pass a parameter to the function a copy is created

  • 0

I know when we pass a parameter to the function a copy is created in the function’s stack and there is no change in the actual value of the parameter in the caller’s function.

What happens when you pass a pointer to the function? I know the value of the parameter does get changed in the callers function. But how does it happen internally? How does the called function access a variable in the caller’s function?

I tried to get information from Call_by_reference page in wikipeidia but was not substantial.

I am confused with this once I started to read about strings and passing strings as parameters to other functions. Any help regarding this would be great help. Thanks!!!!

  • 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-13T02:23:35+00:00Added an answer on June 13, 2026 at 2:23 am

    When you pass a pointer to a function, the pointer gets copied. However, a copy of a pointer to an object x is also a pointer to x, so it can be used to modify x.

    For a (contrived) analogy, suppose that x is your house. By the rules of C, when you need a plumber to fix something in your house, you can either pass the plumber a copy of your house, have them fix that, and give the copy back to you. Needless to say, for houses larger than a few bytes, that’s quite inefficient due to all the copying. So instead, you give the plumber a pointer to your house (its address), so that the plumber can access your house and fix it on the spot. That’s what call-by-reference is: you pass not the data you want modified, but a pointer to that data, so that the callee knows at which location to operate instead of only on which value.

    const int broken = 0, fixed = 1;
    
    struct House {
        int plumbing;
    };
    
    void plumber(House *h)
    {
        h->plumbing = fixed;
    }
    
    int main()
    {
        struct House h;
        h.plumbing = broken;
        plumber(&h);          // give the plumber the address of the house,
                              // not a copy of the house
        assert(h.plumbing == fixed);
    }
    

    In the case of passing strings, what you pass is a pointer to the first char in the string. With pointer arithmetic, you can then get to the following elements.

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

Sidebar

Related Questions

I know I can pass a function pointer as a template parameter and get
I would like to know if it's possible to pass a parameter to a
I know that I can pass a string as the second parameter to the
I know you can pass arguments through the RunWorkerAsync function call when you first
Does anyone know how to pass a several bytes into a Binary (or varbinary)
Does anyone know how to pass html attributes like data-date to the Html.TextBox()?? It
Does anyone know how to pass a C# ASP.NET array to a JavaScript array?
I want to know how to pass structures to another function and subsequently access
I'm learning javascript. I know we can pass a function to other functions after
I want to pass one parameter to a function called ForPaste() . My function

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.