vote up 1 vote down star

i ve created two dimensional array inside a function, i want to return that array, and pass it somewhere to other function..

char *createBoard( ){  
  char board[16][10];
  int j =0;int i = 0;
  for(i=0; i<16;i++){
    	for( j=0;j<10;j++){   
                board[i][j]=(char)201;
    	}	
  }
  return board;
}

but this keeps giving me error

flag

Can you be more specific about the error? – James L Apr 6 at 9:07
1  
You should use unsigned char instead, because 201 is not within the range of char. – Dave Van den Eynde Apr 6 at 9:13
1  
Also, you are returning the address of the local variable. If you try to access it, your program will crash. – Naveen Apr 6 at 9:16

9 Answers

vote up 4 vote down check

Yeah see what you are doing there is returning a pointer to a object (the array called board) which was created on the stack. The array is destroyed when it goes out of scope so the pointer is no longer pointing to any valid object (a dangling pointer).

You need to make sure that the array is allocated on the heap instead, using new. The sanctified method to create a dynamically allocated array in modern C++ is to use something like the std::vector class, although that's more complicated here since you are trying to create a 2D array.

char **createBoard()
{
    char **board=new char*[16];
    for (int i=0; i<16; i++)
    {
       board[i] = new char[10];
       for (int j=0; j<10; j++)
         board[i][j]=(char)201;
    }

    return board;
}

void freeBoard(char **board)
{
    for (int i=0; i<16; i++)
      delete [] board[i];
    delete [] board;
}
link|flag
it gives me error on the second line, it says " syntax error : missing ';' before '[' " – r4ccoon Apr 6 at 10:00
removes the bracket around the second line, and it works. char **board = new char*[maxX]; at least it doesnt gives me compiler error and outbound error – r4ccoon Apr 6 at 10:13
Yeah sorry about that, I wasn't sitting at a compiler and I had to guess at the syntax for that line. – 1800 INFORMATION Apr 6 at 10:20
it might be a good idea to post some code illustrating how to free the board too. – Neil Butterworth Apr 6 at 10:31
1  
I've added some detail on the free function and fixed the syntax error. I'd like to mention that this style is not really classic C++, it is more C style - the right way to do this in C++ would involve an array class such as vector - there is a reason why the answer by Neil was voted up highly – 1800 INFORMATION Apr 6 at 21:01
vote up 10 vote down

The best approach is create a board class and make the ctreateBoard function its constructor:

class Board {
  private:
   char mSquares[16][10];

   public:
    Board() {
        for(int i=0; i<16;i++){
        for( int j=0;j<10;j++){   
                mSquares[i][j]=201;
        }       
    }

   // suitable member functions here
 };

For information on how to use such a class, there is no substitute for reading a good book. I strongly recommend Accelerated C++ by Andrew Koenig and Barbra Moo.

link|flag
how do i pass it to other function on other class? – r4ccoon Apr 6 at 9:55
A simple way would be to mark mSquares as public. And pass references to Board object to functions. – Benoît Apr 6 at 10:25
2  
A simple but bad way. – Neil Butterworth Apr 6 at 10:29
vote up 2 vote down

This approach will not work. If you return a pointer to a local variable you'll run into undefined behaviour. Instead allocate an array on heap with new and copy data into it manually indexing it.

link|flag
vote up 2 vote down

I would really recommend using STL vector<> or boost/multi_array containers for this.

If you must use arrays, then I would recommend using a typedef to define the array.

typedef char[16][10] TBoard;

You could also return

 char**

...but then you would need to typecast it to the correct size in order to index it correctly. C++ does not support dynamic multiple dimension arrays.

Also as others have suggested you can't return an object on the stack (i.e., local variable)

link|flag
cant use boost framework, and they havent teach me about vector.. so i cant use it – r4ccoon Apr 6 at 9:44
Then go with the typedef (if you have a static board size). – Subtwo Apr 6 at 9:50
vote up 1 vote down

Don't return pointer to a local variable, as other mentioned. If I were forced to do what you want to achieve, first I'd go for std::vector. Since you haven't learnt std::vector, here is another way:

void createBoard(char board[16][10])
{  
  int j =0;int i = 0;
  for(i=0; i<16;i++){
        for( j=0;j<10;j++){   
                board[i][j]=(char)201;
        }       
  }
}
link|flag
1  
should be "void createBoard(char (&board)[16][10]);" (reference to array) – qwerty Apr 6 at 10:44
1  
qwerty's right: you define your argument as pass-by-value. Pass it by reference and all works fine. – xtofl Apr 6 at 11:10
Both of them works in Visual Studio 2008. I'm confused. What is wrong with my implementation? How the array is passed by value? – Donotalo Apr 6 at 12:23
vote up 0 vote down

The simple answer to your question is char**.

Having said that, DON'T DO IT ! Your "board" variable won't last outside createBoard().

Use boost::multi_array and pass it as a reference to createBoard() or return it directly (but if you do that, it will be copied).

link|flag
sorry, cant use boost framework. it suppose to use basic c++ – r4ccoon Apr 6 at 9:44
vote up 0 vote down

You must not return a pointer to a functions local variables because this space gets overwritten as soon as the function returns.

The storage associated with board is on the function's stack.

link|flag
vote up 0 vote down

how Do in Main Function . I Want to Know How to call in main Function ?

link|flag
vote up -1 vote down

You should return char** instead of char*

link|flag
trying to do this, changed my grid definition to char *board[16][10]; and the assigning to *board[i][j]=(char)201; still generate compiler error – r4ccoon Apr 6 at 9:47

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.