#include<stdio.h>
int main(){char *p="ABC";printf("%d", * (p+3));return 0;}
*(p+3)指向字符串的结束符\0C语言中,‘\0’的ASCII码是0
指针向后面移动3位,导致遇到字符串分隔符\0,