為什么這個代碼提示非法間接尋址?#include "stdio.h"#include "conio.h"#include "stdlib.h"main(){static int a[3][2]={{1,2},{3,4},{5,6}};int(*p)[2]=a;int *b[3];b[0]=(int *)(p);printf("%d",*(*(b[0]+1)+1));getch();}
添加回答
舉報
0/150
提交
取消