摘要:
# define _CRT_SECURE_NO_WARNINGS # include <stdio.h> # include <stdlib.h> # include <string.h> typedef unsigned char BYTE; typedef unsigned short WORD 阅读全文
摘要:
int ar[5]={1,2,3,4,5}; int (*p)[3]=&ar; printf("%d\n%d\n",p,*p);//结果为5240728,5240728 printf("%d\n%d",p+1,*p+1);//结果为5240740,5240732 为什么结果会是这样呢 p为数组指针, 阅读全文