我的程序旨在在运行时为二维数组分配内存,然后将元素放入其中,然后显示它。我的 prog 抛出了一些异常,任何人都可以帮我识别它吗?
#include<stdio.h>
#include<malloc.h>
#include<stdlib.h>
int main()
{
int i,j,row, col;
int *ptr;
printf("enter size of row and col\n");
scanf("%d%d",&row,&col);
ptr = (int *)malloc(row*col*sizeof(int));
if(ptr==NULL)
{
printf("stderr, not able to allocate memory");
exit(1);
}
else
{
printf("enter the element");
for(i=0; i<row;i++)
for(j=0;j<col;j++)
{
scanf("%d",ptr[i+j]);
}
for(i=0; i<row;i++)
{
for(j=0;j<col;j++)
printf("%d ",ptr[i+j]);
printf("\n");
}
}
}