Don't ad-block us - support your favorite websites. We have safe, unobstrusive, robotics related ads that you actually want to see - see here for more.
0 Members and 1 Guest are viewing this topic.
#include<iostream> namespace chess { class chess_board{ int *chess_board[8][8]; };}
I believe the problem is how you are naming your array. I don't think arrays in C can start with *
#include<iostream> namespace chess { class chess_board{ int *chess_board[8][8]; };}using namespace std;int main(){ cout<< "Hello there"; cin.get();}