Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

I am trying to return a 2D array in C , but I am having a hard time. Here is my code: char** createArray() {

I am trying to return a 2D array in C, but I am having a hard time.

Here is my code:

char** createArray()

{

//fill array with random data(more concerned about how to return)

char** answer = new int*[10];

return answer;

}

int main()

{

char **answer;

answer = createArray();

return(0);

}

Thanks.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

More Books

Students also viewed these Databases questions