#include <iostream>
#include <windows.h>
#include <time.h>
#include <iomanip>
usingnamespace std;
int khoiTao( int *a, int m, int n)
{
for (int i=0;i<m;i++)
for (int j=0;j<n;j++)
*(a+i*n+j)=i*j;
}
int inMang(int *a, int m, int n)
{
for (int i=0;i<m;i++)
{
for (int j=0;j<n;j++)
cout<<setw(3)<<left<<(*(a+i*n+j));
cout<<endl;
}
}
int main()
{
int maTran[20][20],*a,soHang,soCot;
cout<<"Nhap Vao So Hang: ";cin>>soHang;
cout<<"Nhap Vao So Cot: ";cin>>soCot;
a=(int*)maTran[20];
khoiTao(a,soHang,soCot);
inMang(a,soHang,soCot);
system("pause");
}