字符串遍历
C程序员必须学会对字符串的循环遍历。字符串的遍历的几种方式如下:
char *str=“hello world!”;
1,while循环遍历
while(*str!=‘\
{
printf(“%c”, *str);
str++;
}
2,for循环遍历
for(;*str!=‘\
{
printf(“%c”, *str);
}
3,数组方式遍历
for(int i=0; str[i]!=‘\
{
printf(“%c”, str[i]);
}