在C語言中,可以使用循環(huán)來遍歷字符串中的所有字符。以下是一個(gè)簡單的示例代碼:
#include <stdio.h>
int main() {
char str[] = "Hello, World!";
int i;
for(i = 0; str[i] != '\0'; i++) {
printf("%c ", str[i]);
}
return 0;
}
在上面的代碼中,我們定義了一個(gè)字符串 str
,然后使用 for
循環(huán)遍歷字符串中的字符,直到遇到字符串的結(jié)尾符 \0
。在循環(huán)中,我們使用 %c
來打印每個(gè)字符。
運(yùn)行上面的代碼,輸出將是:
H e l l o , W o r l d !