gpt4 book ai didi

c - 有没有类似于 strcpy 但用于 int 值的东西?

转载 作者:行者123 更新时间:2023-11-30 20:00:45 25 4
gpt4 key购买 nike

谢谢你,它有效...................................... ......................

strcpy(holder[pos].key, new.key); 

holder[pos].position = new.position

strcpy(holder[pos].name, new.name);

strcpy(holder[pos].country, new.country);

最佳答案

您不需要 strcpy 或任何特殊函数。 Strcopy 是必需的,因为字符串严格来说不仅仅是 C 中的一种数据类型,而是以 null 结尾的 char 数组。

你可以这样做:

holder[pos].position = new.position; // Assigns the value of new.position to holder[pos].position

关于c - 有没有类似于 strcpy 但用于 int 值的东西?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40254527/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com