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