Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
好的,我正在制作一个简单的刽子手游戏。我需要帮助拉出数组dict[num]num 中的字符串,该字符串是一个随机数。我只需要一种方法来获取并使用该字符串以及使用strlen()它的功能。
dict[num]
strlen()
截至目前strlen(dict[num])不起作用?
strlen(dict[num])
如果 dict 数组的类型是 char 则获取长度
strlen(dict)
并不是
如果
给出分段错误然后检查你的数组是否填充了字符串我的意思是检查数组中的字符串是否以空字符结尾'\0'
'\0'