网站大量收购闲置独家精品文档,联系QQ:2885784924

c语言课件撒第10章指针1011.ppt

  1. 1、本文档共77页,可阅读全部内容。
  2. 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
c语言课件撒第10章指针1011

第十章 指 针 掌握指针与指针变量的概念; 掌握数组的指针和指针数组的使用; 掌握字符串指针和指向字符串的指针变量的使用; 掌握指针函数和函数指针的使用; 了解指向指针的指针的概念及其使用。 预 备 知 识 §10.1 指针及其相关概念 §10.2 变量的指针和指向变量的指针变量 §10.3 数组的指针和指向数组的指针变量 作业?(均要求用指针实现) (1)任意输入5个整数,按由大到小的顺序输出; (2)写一个函数 select(int n, double a[], double b[], double x) ,它将数组b中大于x的数顺序复制到数组a中。 a数组的内容为空,n是两个数组的大小。 §10.4 字符串指针和指向字符串的指针变量 §10.5 指针函数和函数的指针 §10.7 指针数组和指向指针的指针 §10.8 指针的数据类型小结 State the following statements are true or false. 判断下列说法是真还是假 A) Pointer variables are declared using the address operator. 指针变量用地址运算符()来定义。 B)The underlying type of a pointer variable is void. 指针变量名不能使用下划线。 C) Pointers to pointers is a term used to describe pointers whose contents are the address of another pointer. 指向指针的指针是这样一种参数,它用于描述一种把其他指针的地址作为内容的指针。 D) It is possible to cast a pointer to float as a pointer to integer. 可以把float 型的指针指定为integer型的指针。 e) An integer can be added to a pointer. 指针可以与一个整数相加 。 f)A pointer can never be subtracted from another pointer. 指针不能与指针相减。 g) When an array is passed as an argument to a function, a pointer is passed. 当把数组作为变量传递给一个函数时,就等于传递了一个指针。 h) Pointers cannot be used as formal parameters in headers to function definition. 进行函数定义时,函数头的形参不能使用指针。 Fill in the blanks in the following statements. a) A pointer variable contains as its value the ____ of another variable. b)The _____ operator is used with a pointer to de-reference the address contained in the pointer. c) The ____ operator returns the value of the variable to which its operand points. ____ 操作符所返回的值是变量的操作数(变量的值)所指向的值。 If m and n have been declared as integers and p1 and p2 as pointers to integers, then state errors, if any, in the following statements. a) p1=m; b) p2=n; c) *p1=n; d) p2=*m e) m=p2-p1; f) p1=p2; g) m=*p1+*p2++; 习题10.17:写一函数,实现两个字符串的比较。 main() { char s1[128],s2[128]; gets(s1); gets(s2); printf(cmps(s1,s2)=%d,cmps(s1,s2)); } cmps(char *s1,char *s2) { while(*s1*s2*s1==*s2); return *s1-*s2; } 习题10.6:写一个函数,求字符串的长度,在main 函数中输入

文档评论(0)

150****4233 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档