码迷,mamicode.com
首页 > 编程语言 > 详细

C语言--指针数组大小

时间:2014-07-01 20:03:42      阅读:422      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   2014   io   

#include <stdio.h>
#include <string.h>
int main(void)
{

char *str[3]={
"Hello,thisisasample!",
"Hi,goodmorning.",
"Helloworld"
};

char s[80];

printf("size  %d\n",sizeof(char [3])); //
printf("size  %d\n",sizeof(str)); // 3X4=12

printf("size  %d\n",sizeof(*str)); //   sizeof((char *)str)

bubuko.com,布布扣

 

C语言--指针数组大小,布布扣,bubuko.com

C语言--指针数组大小

标签:style   blog   http   color   2014   io   

原文地址:http://www.cnblogs.com/qbmiller/p/3817037.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!