摘要:
#include <stdio.h> int main(int argn ,char *argv[]) { int a[5][5]; int (*p)[4]; p = a; printf("&p[4][2]:0x%x, &a[4][2]:0x%x\n", &p[4][2], &a[4][2]); p 阅读全文
posted @ 2020-05-19 21:04
唯一诺
阅读(126)
评论(0)
推荐(0)
摘要:
#include <stdio.h> int main(int argn ,char *argv[]) { int buf[10] = {1,2,3,4,5,6,7,8,9}; int (*p1)[3] = &buf; int (*p2)[3] = buf; int * p3 = (int*)((i 阅读全文
posted @ 2020-05-19 20:15
唯一诺
阅读(406)
评论(0)
推荐(0)

浙公网安备 33010602011771号