int *p,q;//等价于int *p,q;
    printf("%p,%d",p,q);

C语言定义指针时的注意事项_开发语言