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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T08:28:48+00:00 2026-05-18T08:28:48+00:00

Hey everybody ! I am a beginner programmer and need some help with pointers.

  • 0

Hey everybody ! I am a beginner programmer and need some help with pointers. This is what I am trying to do: I have two pointer arguments to a function(caller), say arg1 and arg2. Now I want to manipulate these pointers inside some other function, say func, such that change reflects in the caller from where the func was called. However right now the change I make in the function gets undone in the calling function. Here is the source code:

func(node* arg1, node* argv2)
{
  node* point3 = (struct node*) malloc(struct node);
  arg2 = arg1;
  arg 1  = point3;
}

caller(node* argv1, node* argv2)
{
  func(arg1, arg2);
}

Now I know that this can be done using pass by reference technique. But for that func becomes func(node** arg, node** arg2) and I dont want to get into double pointers. I was thinking more on the lines of how an array when manipulated or changed in a function changes for all the functions in the program. Please help me out !

  • 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-05-18T08:28:48+00:00Added an answer on May 18, 2026 at 8:28 am

    There are two ways to do it:
    1) Swap pointers, for this you need to use double pointers(**)

    
    func(node** arg1, node** arg2)
    {
      node* tmp = *arg2;
      *arg2 = *arg1;
      *arg1  = tmp;
    }
    

    2) Swap content, I think you can do it like this:

    
    func(node* arg1, node* arg2)
    {
      node* tmp = (struct node*) malloc(sizeof(struct node));
      node* clean = tmp; 
      *tmp = *arg2;
      *arg2 = *arg1;
      *arg1  = *tmp;
      free(clean);
    }
    
    

    Method #1 is more efficient since it will swap pointers instead of whole struct. And as someone mentioned, you should use sizeof() inside malloc.

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

Sidebar

Related Questions

Hey everybody, this is what I have going on. I have two text files.
Hey guys. I'm not much of a programmer, but still need to do some
Hey right now I'm using jQuery and I have some global variables to hold
Hey having some trouble trying to maintain transparency on a png when i create
Hey everybody, Im really confused about this problem. Ill try to describe it: The
Hey all, my Computational Science course this semester is entirely in Java. I was
Hey all. Newbie question time. I'm trying to setup JMXQuery to connect to my
Hey peoples, I've been studying Java for a couple of weeks, and have decided
Hey everybody, got an interesting question I think. I've got a Silverlight3 application which
Hey all, I'm having a difficult time wording this properly which is why im

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.