在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
为止。