c語言strlen()和sizeof()的區別
阿新 • • 發佈:2019-01-01
sizeof(type a)輸出結果是 type的長度。
strlen()是不包括字串末尾’\0’的長度。
note:
char str[20]=”hello”;
str 是char【20】型的 所有佔20個位元組。
char * p =str;//p是指標,char*型的指標。指向的內容是str字串。
所以sizeof(p)在32位的作業系統中是4位的,在64位的作業系統中是8位的。
但是strlen(p)是從指標開始的位置向下找 直到’\0’為止的長度。
這裡寫程式碼片
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
void test(char *test1) ;
int main()
{
char str [100]="/home/princess1/thirdweek/ans3/filefor1/" ;
char *p= str;
//printf("main中指標char *p的長度%d\n",p) ;
printf("main中指標 *p的長度%d\n",sizeof(p)) ;
printf("main中指標 strlen(p)的長度%d\n",strlen(p)) ;
char str1[100];
int a=0;
int *p_a=&a;
printf ("main中int的長度%d\n",sizeof(*p_a)) ;
memset(str1,'a',sizeof(str1));
test(str);
// memcpy(str1,str,sizeof(str)) ;
printf("main中strlen的%d\n",strlen(str)) ;
printf("main中sizeof的%d\n",sizeof(str));
printf("%s\n",str);
}
void test(char *test1)
{
char str1[100]={0};
memcpy(str1, test1 ,sizeof (test1));
printf(" test程式輸出結果 傳參進來的字串指標sizeof長度%d\n",sizeof(test1));
printf(" test程式輸出結果 傳參進來的字串strlen指標長度%d\n",strlen(test1));
printf(" test程式輸出結果 傳參進來的字串指標%s\n",str1);
}
程式的輸出結果是