CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 15 of 33

Threaded View

  1. #14
    Join Date
    Sep 2003
    Location
    STL LAND
    Posts
    15
    Just felt compelled to butt in here and say: Use a vector.

    typedef std::vector<std::vector<int> > 2D_ARRAY;

    void foo(2D_ARRAY& a2DArray)
    {

    }
    Last edited by STL MAN; September 27th, 2003 at 03:18 AM.
    DEFENDER OF ALL THINGS STL!!!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured