c语言遍历字符串的方法是什么

981
2024/5/14 17:38:14
栏目: 编程语言
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

在C语言中,可以使用循环来遍历字符串。其中最常用的方法是使用for循环和while循环。

使用for循环遍历字符串:

#include <stdio.h>

int main() {
    char str[] = "Hello, World!";
    int i;

    for(i = 0; str[i] != '\0'; i++) {
        printf("%c", str[i]);
    }

    return 0;
}

使用while循环遍历字符串:

#include <stdio.h>

int main() {
    char str[] = "Hello, World!";
    int i = 0;

    while(str[i] != '\0') {
        printf("%c", str[i]);
        i++;
    }

    return 0;
}

这两种方法都会逐个访问字符串中的字符,直到遇到字符串结束符\0为止。

辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

推荐阅读: C语言strstr函数的用法是什么