mirror of
https://github.com/c0de-archive/hacktoberfest-2018.git
synced 2024-11-01 04:07:48 +00:00
ff6b80af9a
code in c++ for a dynamic 2-dimensional array
27 lines
346 B
C++
27 lines
346 B
C++
#include <iostream>
|
|
#include<vector>
|
|
|
|
using namespace std;
|
|
|
|
int main() {
|
|
int m;
|
|
cin>>m;
|
|
int *arr = new int[m*m];
|
|
for(int i=0;i<m;i++)
|
|
{
|
|
for(int j=0;j<m;j++)
|
|
{
|
|
cin>>arr[i*m+j];
|
|
}
|
|
}
|
|
for(int i=0;i<m;i++)
|
|
{
|
|
cout<<endl;
|
|
for(int j=0;j<m;j++)
|
|
{
|
|
cout<<arr[i*m+j]<<"\t";
|
|
}
|
|
}
|
|
}
|
|
|