摘要: 1 //字符串指针法赋值 2 # include<stdio.h> 3 char a[]="I am a student!"; 4 char b[20]; 5 char *p1=a,*p2=b; 6 int main() 7 { 8 while(*p2++=*p1++); //while(*b++= 阅读全文
posted @ 2020-03-12 18:44 kakusan 阅读(929) 评论(0) 推荐(0) 编辑