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.
这很简单,但我忘记了,因为我上次这样做是两个月前。我想知道如何找到字符串指针中的字符(字母)数。我尝试使用 sizeof() 和 strlen() 但它们返回错误的值。例如,当 insert="-dh o output -i input" 时,sizeof() 函数返回 210。非常感谢您的帮助。我的功能:
int find(char* insert, char* check) { }
strlen()应该给出以空字符结尾的字符串的正确答案(字符串的长度)。sizeof是一个运算符,在这种情况下,它将返回表示char指针所需的字节数。
strlen()
sizeof
char