Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,851 questions

51,772 answers

573 users

How to use two dimension object array with pointer in C++

1 Answer

0 votes
#include <iostream>

using std::cout;
using std::endl;

class Test {
	double a, b;
public:
	Test(double _a, double _b) {
		a = _a;
		b = _b;
	}
	void print() {
		cout << a << " : " << b << endl;
	}
};

int main()
{
	Test o[2][3] = {
		Test(1, 1), Test(2, 2),
		Test(3, 3), Test(4, 4),
		Test(5, 5), Test(6, 6)
	};

	Test *p = (Test *)o;

	for (int i = 0; i < 2; i++)
	{
		for (int j = 0; j < 3; j++)
		{
			p->print();
			p++;
		}
		cout << endl;
	}

	return 0;
}


/*
run:

1 : 1
2 : 2
3 : 3

4 : 4
5 : 5
6 : 6

*/

 



answered Apr 12, 2018 by avibootz

Related questions

2 answers 178 views
1 answer 125 views
1 answer 131 views
131 views asked Apr 12, 2018 by avibootz
1 answer 125 views
1 answer 144 views
...