CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: goliath11

Search: Search took 0.02 seconds.

  1. Replies
    4
    Views
    1,332

    Re: Problem with large pointer array

    N is only around 4000. What bothers me is that I get bad_alloc after completing the first few iterations. If it was a memory problem I would expect it to fail during the first initialization. If M is...
  2. Replies
    4
    Views
    1,332

    Problem with large pointer array

    Hello,
    I am working on a program which creates a large pointer array of numbers and then performs several iterations of operations in them.


    int * u = new int[N];
    double * nu = new double[N];...
Results 1 to 2 of 2





Click Here to Expand Forum to Full Width

Featured