使用主函数调用上面的函数
时间: 2024-10-27 14:08:49 浏览: 10
C语言函数-子函数-主函数与子函数的调用
5星 · 资源好评率100%
在C++中,你可以创建一个`main()`函数来调用上述`index()`函数。这里是一个简单的例子:
```cpp
#include <iostream>
int main() {
const char* str = "Hello, World!";
char targetChar = 'W'; // 要查找的目标字符
int result = index(str, targetChar);
if (result != -1) {
std::cout << "字符 '" << targetChar << "' 首次出现在字符串中的位置是: " << result << std::endl;
} else {
std::cout << "字符 '" << targetChar << "' 没有在字符串中找到." << std::endl;
}
return 0;
}
```
在这个例子中,我们首先声明了一个字符串`str`和一个目标字符`targetChar`,然后调用了`index()`函数并打印结果。如果函数返回非负值,说明找到了字符,否则表示未找到。
阅读全文