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