#include <iostream>
#include <cstring>
int main() {
const char str[] = "Hello, World!";
const char ch = 'o';
const char *result = strchr(str, ch);
if (result) {
std::cout << "Character '" << ch << "' found at position " << result - str << std::endl;
} else {
std::cout << "Character '" << ch << "' not found in the string." << std::endl;
}
return 0;
}
這段代碼演示了如何正確使用strchr
函數來查找指定字符在字符串中的位置。如果找到了指定字符,則打印出該字符的位置;如果沒有找到,則打印出未找到的提示信息。