//AFTER THIS, I ASSIGNED A VALUE TO board[i][j] IN A NESTED LOOP BUT WHEN I COUT THE BOARD, ALL THE ADDRESSES WERE STORED IN IT AND NOT THE INTEGER VALUES.
I JUST WANT TO MAKE AN ULTIMATE BOARD CONSISTING OF SMALL BOARDS OF 1D POINTERS IN THAT BIG BOARD. IS MY CODE RIGHT?
Well of course if you cout the board it will print addresses because board is pointer. pointers contain address not the actual value. You need to put a * before a pointer to get the value stored in it. And in your case you haven't assigned any values to your board you only created the array. So event if you use cout << *pointerName than a garbage value will show up
It's not necessarily obvious since printing a char pointer does not behave like that.
He wanted integers to show up when he use cout. There are no chars involve here. So its kinda obvious. I know that char pointer work differently but in the current scenerio he was expecting a int. So char pointer is out of the scope of the current question
It's obvious for you. I just didn't want Muiz to feel bad if it wasn't obvious for him. Because to be honest, it's not obvious unless you have learned that that is how it works.