C基础09天--指针+1

#include <stdio.h>

int main(void)
{
    char *p[10];
    printf("%d\t%d\n", sizeof(p), sizeof(*p));

    return 0;
}

 

posted @ 2015-09-22 15:11  微博和csdn还有你  阅读(128)  评论(0编辑  收藏  举报