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

  • Home
  • SEARCH
  • 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 4617282
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T02:06:08+00:00 2026-05-22T02:06:08+00:00

Code #include stdafx.h #include <iostream> void someFunc(double* pDoubleArray, int length) { double* pNewDoubleArray =

  • 0

Code

#include "stdafx.h"
#include <iostream>

void someFunc(double* pDoubleArray, int length)
{
    double* pNewDoubleArray = new double[length];

    for(int i = 0; i < length; i++)
    {
        pNewDoubleArray[i] = i * 3 + 2;
    }

    pDoubleArray = pNewDoubleArray;
}
int main()
{
    double dbls[] = { 1, 2, 3, 4, 5 };

    int length = sizeof dbls / sizeof dbls[0];

    std::cout << "Before..." << std::endl;

    for(int i = 0; i < length; i++)
    {
        std::cout << dbls[i] << ", ";
    }

    std::cout << std::endl;

    someFunc(dbls, length);

    std::cout << "After..." << std::endl;

    for(int i = 0; i < length; i++)
    {
        std::cout << dbls[i] << ", ";
    }

    std::cout << std::endl;

    while(true){ }

    return 0;
}

Output

Before...
1, 2, 3, 4, 5,
After...
1, 2, 3, 4, 5,

Here’s what I am trying to do:
1. Create an array and fill it with some values
2. Pass that array as a pointer to a function that will create a new array and reassign the one that was passed in to the newly created array
3. Print out the changes

I am not seeing any changes though, and I do not know why.

  • 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-22T02:06:09+00:00Added an answer on May 22, 2026 at 2:06 am

    The interface of your function someFunc is wrong. It should require the reference of a pointer’s address (or the pointer to a pointer) so that you can return the address of your new array. Otherwise, you are simply modifying a local value.

    void someFunc(double*& pDoubleArray, int length)
    {
      double* pNewDoubleArray = new double[length];
    
      for(int i = 0; i < length; i++)
      {
        pNewDoubleArray[i] = i * 3 + 2;
      }
    
      pDoubleArray = pNewDoubleArray;
    }
    

    Your calling main function should then pass a value which can be modified:

    int main()
    {
      double dbls[] = { 1, 2, 3, 4, 5 };
      double* pArray = dbls;
      // ...
    
      someFunc(pArray, length);
      // ...
    
      for(int i = 0; i < length; i++)
      {
        std::cout << pArray[i] << ", ";
      }
      // ...
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this code #include <iostream> using namespace std; int main(int argc,char **argv) {
I have written the following code: #include stdafx.h #include <iostream> using namespace std; double
Consider the following code: #include <stdio.h> int main (void) { char str1[128], str2[128], str3[128];
Please Explain the following code #include <iostream> using namespace std; int main() { const
Code: #include <iostream> #include stdafx.h #include <boost/thread.hpp> #include <boost/thread/mutex.hpp> using namespace std; boost::mutex mut;
I tried without any result. My code looks like this: #include stdafx.h #include <iostream>
In code below (please see comment): #include stdafx.h #include <iostream> using std::cout; struct Base
include stdafx.h #include <iostream> using namespace std; class Foo{ public: void func() { cout<<Hello!!<<endl;
c++ code -------- #include stdafx.h #include <iostream> using namespace std; class A { public:
I have the following code: #include stdafx.h #include <iostream> #include <conio.h> using namespace std;

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.