How to assign value of single dimensional array to two dimensional array. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

How to assign value of single dimensional array to two dimensional array.

I'm not able to figure out how to setup my loop so that I can able to assign my value from single dimensional array to two dimensional array. If anyone have any idea please let me know. Thank you.

11th Jun 2021, 4:10 PM
I Am a Baked Potato
I Am a Baked Potato - avatar
6 Answers
+ 5
in c/c++ the multidimensional array is just a syntactic sugar ..in reality its really a single dimensional array ..so what you can do is cast that single dimensional array to 2d array that way you dont even need any loops ... an example : #include <iostream> using namespace std; int main() { int arr[4] = { 0, 1, 2, 3 }; int (*mult)[2]=(int(*)[2])arr; cout << mult[0][0] << endl << mult[0][1] << endl << mult[1][0] << endl << mult[1][1] << endl; return 0; }
11th Jun 2021, 5:29 PM
Prashanth Kumar
Prashanth Kumar - avatar
+ 1
For that your 1-d matrix have to n*m values to form n×m 2d- matrix. And just let me know how you assign values normally into 2d array.. Normally we do cin>>arr[I][j] ; instead do arr[I][j]= arr1d[k++] ; where I,j are index values for 2d array ,and k for 1d array. Hope it helps..
11th Jun 2021, 4:27 PM
Jayakrishna 🇮🇳
+ 1
Jayakrishna🇮🇳 Omg thank you so much! It worked!
11th Jun 2021, 4:49 PM
I Am a Baked Potato
I Am a Baked Potato - avatar
+ 1
Prashanth Kumar [back again] Thank you! It's really helpful
12th Jun 2021, 3:20 AM
I Am a Baked Potato
I Am a Baked Potato - avatar
0
You're welcome Tushar Kumar
11th Jun 2021, 4:51 PM
Jayakrishna 🇮🇳
0
2D array consists of two things rows and columns. So it is 2D, one dimension array consists only by rows while it is one line with many elements. In 2D array you need two loops for rows and columns. Rows loop is outer and columns loop is nested. After loops follows condition statement (if sentence) then output statement. And at last you need again cout statement with endl, so it makes your array into columns.
12th Jun 2021, 7:10 AM
TeaserCode