?? 8.c
字號:
#include<stdio.h>
void yiwei_pointer()
{
static int a[3][5]={1,2,3,4,5,6,7,8,9,10,11,12,13,14,15};
int i,j,(*p)[5];
p=a;
for(i=0; i<3; i++)
for(j=0; j<5;j++)
printf("%d ", *(* ( p + i ) + j ) );
printf("\n");
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -