+ 3
Code that let's the user create a multidimensional array in C?
How do you make a code that asks the user to input the number of rows and columns in an array, ask them to input the elements, and print the array?
4 ответов
+ 2
You could do something like this:
https://code.sololearn.com/cd3dcH0q6OEk/#c
+ 2
language?
+ 2
Oh My bad... The language is C
+ 2
in c:
int multidim[5][5][5][5];
(a 4 dimensioal array)