阅读量:0
在C语言中,可以通过循环打印字符数组中的每个字符,直到遇到字符串结束符’\0’为止。下面是一个示例代码:
#include <stdio.h> int main() { char str[] = "Hello, world!"; int i = 0; // 通过循环打印字符数组中的每个字符 while (str[i] != '\0') { printf("%c", str[i]); i++; } return 0; }
输出结果为:
Hello, world!
在上面的示例代码中,我们定义了一个字符数组str
并初始化为"Hello, world!",然后通过循环遍历字符数组中的每个字符,并使用printf
函数打印每个字符。当遇到字符串结束符’\0’时,循环终止。