C语言遍历字符串的两种方式(代码)
一.使用指针#include <stdio.h>#include <string.h>int main(){ char *s="You are beautiful!"; for(int i=0;i<strlen(s);i++) { printf("%c",s[i]); } return 0;}二.字符数组的方式#include <stdio.