problem with array..help

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • quetzalcoatl

    problem with array..help

    hi to everybody
    I have a problem with an array...
    I have an array in a cycle for but the iterations that serve me they
    are more than those max admitted for an array that in my computer they
    are around 23000. What I ask you is:
    1)How do to make to continue the calculations over this limit of
    iterations?
    2)can I use another array that you leave again by where the first one
    is stopped? But as I do?
    I hope to find someone that the problem resolves me.... however thanks
    hi
  • lredmond

    #2
    Re: problem with array..help

    use a vector instead,
    vector<int> myvect, this is dynamic
    "quetzalcoa tl" <oriakyj@hotmai l.com> wrote in message
    news:da10a6f8.0 307121009.616f4 c0@posting.goog le.com...[color=blue]
    > hi to everybody
    > I have a problem with an array...
    > I have an array in a cycle for but the iterations that serve me they
    > are more than those max admitted for an array that in my computer they
    > are around 23000. What I ask you is:
    > 1)How do to make to continue the calculations over this limit of
    > iterations?
    > 2)can I use another array that you leave again by where the first one
    > is stopped? But as I do?
    > I hope to find someone that the problem resolves me.... however thanks
    > hi[/color]


    Comment

    Working...