丰富超短裙

文章
6
资源
0
加入时间
3年0月9天

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.