首页 > 代码库 > 用c语言指针处理字符串

用c语言指针处理字符串

字符串的处理方法有两种:一种方法是使用字符数组处理字符串,另一种是方法是使用字符指针处理字符串。

后一种也是c语言比较常用的方法。下面我们来看一个列子:

 1 #include<stdio.h>
 2 int main()
 3 {
 4     char a[50],*str1,*str2;
 5     char b[]="I am student.";
 6     str1 = a;
 7     str2 = b;
 8     while((*str1=*str2)!=\0)
 9     {
10         str1++;
11         str2++;
12     }
13     printf("Result:%s\n",b);
14     return 0;
15 }

运行结果:

技术分享

 

用c语言指针处理字符串