- 1、本文档共109页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
C语的言第10章 指针
第十章 10.1地址和指针的概念 10.2 变量的指针和指向变量的指 针变量 void print(char *name[ ],int n) {int i; for(i=0;i<n;i++) printf(″%s\n″,name[i]); } 运行结果为: BASIC Computer design FORTRAN Follow me Great Wall *p2=*p1; *p2=′\0′; printf(″string a is:%s\n″,a); printf(″string b is:″); for(i=0;b[i]!=′\0′;i++) printf(″%c″,b[i]); printf(″\n″); } 程序必须保证使p1和p2同步移动 10.4.2 字符指针作函数参数 例10.19 用函数调用实现字符串的复制 #include stdio.h void main() { void copy_string(char from[ ], char to[ ]); char a[ ]=″I am a teacher.″; char b[ ]=″you are a student.″; printf(“string a=%s\n string b=%s\n″, a,b); printf(“copy string a to string b:\n ”); copy_string (a,b); printf(\nstring a=%s\nstring b=%s\n,a,b); } (1) 用字符数组作参数 void copy_string(char from[ ], char to[ ]) { int i=0; while(from[i]!=′\0′) {to[i]=from[i];i++;} to[i]=′\0′; } 程序运行结果如下: string a=I am a teacher. string b =you are a student. copy string a to string b: string a =I am a teacher. stringb=I am a teacher. (2) 形参用字符指针变量 #include stdio.h void main() { void copy_string(char * from, char *to); char *a=″I am a teacher .″; char *b=″you are a student .″; printf(string a=%s\nstring b=%s\n″,a,b); printf(copy string a to string b:\n ); copy_string(a,b); printf(\nstring a=%s\nstring b=%s\n,a,b); } void copy_string(char *from,char *to) { for(;*from!=′\0′;from++,to++) *to=from; *to=′\0′; } (3) 对copy string 函数还可作简化 1、将copy_string函数改写为 void copy_string (char *from,char *to) {while((*to=*from)!=′\0′) {to++;from++;} } ? copy_string函数的函数体还可改为 { while((*to++=*from++)!=′\0′); } ?copy_string函数的函数体还可写成 { while(*from!=′\0′) *to++=*from++; *to=′\0′; } ?上面的while语句还可以进一步简化为下面的while语句: while(*to++=*from++); 它与下面语句等价: while((*to++=*from++)!=′\0′); 将*from赋给*to,如果赋值后的*to值等于′\0′则循环终止(′\0′已赋给*to) ?函数体中while语句也可以改用for语句: for(;(*to++=*from++)!=0;); 或 for(;*to++=*from++;); ?也可用指针变量,函数copy_string可写为 void copy_string (char from[ ],char t
您可能关注的文档
- Chapt 4 Flash基础的动画.pptx
- CHAP9查找 [的修复的].pptx
- chapter02 Java的概述和入门程序.ppt
- chap4-2-数据服务与S的OA基本概念.pptx
- chapter03 输入输出与简单程序的设计.ppt
- chapter 2 进的程的描述与控制.ppt
- Chapter的 12 JDBC编程.pptx
- chapter8的多线程.pdf
- chapter的05 类的继承和派生.ppt
- Chapter的5(Visual Studio集成开发环境).ppt
- 吉安县公开招聘专职文明实践员笔试备考试题及答案解析.docx
- 2025重庆枫叶国际学校招聘教师笔试备考试题及答案解析.docx
- 游机队电玩自制联网教程-tplink.pdf
- 2025重庆新华出版集团招聘1人笔试模拟试题及答案解析.docx
- 2025宜宾高新丽雅城市产业发展有限公司公开招聘笔试模拟试题及答案解析.docx
- 2025云南保山市龙陵县勐糯镇人民政府招聘合同制专职消防员1人笔试模拟试题及答案解析.docx
- 11.1生活中常见的盐 九年级化学人教版下册.pptx
- 6.1法律保护下的婚姻 高二政治《法律与生活》课件(统编版选择性必修2)(新版).pptx
- 文昌市中小学教师校园招聘29人笔试模拟试题及答案解析.docx
- 10.1.5 常见的酸和碱(第5课时)课件-九年级化学人教版下册.pptx
文档评论(0)