cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
General C++ Programming
2D ARRAY OF objects
2D ARRAY OF objects
Nov 27, 2013 at 5:25am UTC
kabary
(3)
How can i implement a 2d array of objects in c++ without getting stackoverflow,
like
class point{
int x,y;
point()
{
x = 0,y = 0;
}
how can i make a 2d array of points ?
i mean
point p[100][100];
won't work , will give you a stackoverflow
Nov 27, 2013 at 7:49am UTC
ats15
(423)
http://codepad.org/ivglgNg1
Seems to be working
Topic archived. No new replies allowed.