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

C语言知识总结

时间:2015-06-29 10:00:44      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:c语言   strlen   sizeof区别   

以下程序的输出结果

#include <stdio.h>

void main()
{
    char * ptr="hello";
    char str[]="hello";
    printf("sizeof(pts) is %d\n", sizeof(ptr));//这里输出指针的大小
    printf("sizeof(str) is %d\n", sizeof(str));//这里输出整个str占用的空间大小,包括‘\0’,故输出结果为:6
    printf("strlen(ptr) is %d\n", strlen(ptr));//以下两个都是输出5,输出的是实际的数组或字符串的长度,不包括‘\0’
    printf("strlen(str) is %d\n", strlen(str));
}
sizeof(pts) is 8
sizeof(str) is 6
strlen(ptr) is 5
strlen(str) is 5

C语言知识总结

标签:c语言   strlen   sizeof区别   

原文地址:http://blog.csdn.net/jisuanji_wjfioj/article/details/46678395

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