结构中的char指针

结构中的char指针

本文介绍了结构中的char指针的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

限时删除!!

  #include   <   stdio.h  >  
struct 示例
{
char * name;
};
int main()
{
struct 样本山姆;
sam.name =( char *)malloc( sizeof char )* 100 );
strcpy(sam.name, vicky);
printf( %d \ n的sizeof (sam.name));
return 0 ;
}





名称大小显示4



但我已分配100个字节,但它显示4个字节

解决方案




#include <stdio.h>
struct sample
{
    char *name ;
};
int main()
{
    struct sample sam;
    sam.name = (char *)malloc(sizeof(char)*100);
    strcpy(sam.name,"vicky");
    printf("%d\n",sizeof(sam.name));
    return 0;
}



size of name is showing 4

but i have allocated 100 bytes but it is showing 4 bytes

解决方案




这篇关于结构中的char指针的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

1403页,肝出来的..

09-08 07:52