第十三行有一个逗号为中文逗号
#include<stdio.h> #include<string.h> void main() { int a[5]; int* p; int* q; p = &a[1]; q = &a[4]; printf("%d",q-p); //逗号换成英文格式的 }