91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

C++ strstr函數的正確用法

c++
小樊
90
2024-06-13 18:26:41
欄目: 編程語言

strstr函數是用于在字符串中查找指定子字符串的函數。它的原型為:

char *strstr(const char *haystack, const char *needle);

其中,haystack是要在其中搜索的字符串,needle是要搜索的子字符串。

使用strstr函數的正確用法如下:

#include <iostream>
#include <cstring>

int main() {
    const char *haystack = "Hello, world!";
    const char *needle = "world";
    
    char *result = strstr(haystack, needle);
    
    if(result) {
        std::cout << "Found at position: " << result - haystack << std::endl;
    } else {
        std::cout << "Not found" << std::endl;
    }
    
    return 0;
}

上面的代碼首先定義了兩個字符串haystack和needle,然后調用strstr函數在haystack中查找needle字符串。如果找到了,則打印出其位置;否則打印出"Not found"。

0
田阳县| 汝南县| 若尔盖县| 正安县| 安岳县| 雷山县| 阜平县| 综艺| 荔波县| 贵港市| 宿迁市| 来凤县| 莲花县| 历史| 祁阳县| 东光县| 宜兰县| 安新县| 鄂伦春自治旗| 喀喇沁旗| 突泉县| 紫云| 金秀| 尉氏县| 连城县| 宁安市| 利辛县| 宜兰县| 同心县| 普兰县| 广汉市| 漠河县| 讷河市| 双流县| 广德县| 翁牛特旗| 荔浦县| 饶平县| 中超| 大同市| 南康市|