结构体数组指针的值怎样才能赋给字符数组
答案:2 悬赏:70 手机版
解决时间 2021-12-25 21:11
- 提问者网友:别再叽里呱啦
- 2021-12-25 09:22
结构体数组指针的值怎样才能赋给字符数组
最佳答案
- 五星知识达人网友:过活
- 2021-12-25 09:45
强制类型转换。比如
struct structure structure_array[];
char str[],* ptr;
ptr=(char*) structure_array;
//so it is . If you want combin them in str.
strcat(str,ptr);
struct structure structure_array[];
char str[],* ptr;
ptr=(char*) structure_array;
//so it is . If you want combin them in str.
strcat(str,ptr);
全部回答
- 1楼网友:荒野風
- 2021-12-25 10:08
你说呢...
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯