C语言指针精选习题和答案(共13页).doc
《C语言指针精选习题和答案(共13页).doc》由会员分享,可在线阅读,更多相关《C语言指针精选习题和答案(共13页).doc(13页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、精选优质文档-倾情为你奉上一、用指针方法编写一个程序,输入3个整数,将它们按由小到大的顺序输出#include void swap(int *pa,int *pb) int temp; temp = *pa; *pa = *pb; *pb = temp; void main() int a,b,c,temp; scanf(%d%d%d,&a,&b,&c); if(ab) swap(&a,&b); if(bc) swap(&b,&c); if(ac) swap(&a,&c); printf(%d,%d,%d,a,b,c); 二、C语言 用指针方法 输入3个字符串 按由小到大顺序输出#includ
2、e stdio.h#include string.hint main(int argc, char* argv)char *t;char *p1=NULL,*p2=NULL,*p3=NULL;char ch120=0,ch220=0,ch320=0;p1=ch1;p2=ch2;p3=ch3; printf(No1:); scanf(%s,p1);fflush(stdin); printf(No2:);scanf(%s,p2);fflush(stdin); printf(No3:);scanf(%s,p3);fflush(stdin); if(strcmp(p1,p2)0)t=p1;p1=p2;
3、p2=t;if(strcmp(p1,p3)0)t=p1;p1=p3;p3=t;if(strcmp(p2,p3)0)t=p2;p2=p3;p3=t;printf(%sn%sn%sn,p1,p2,p3);return 0; 9.4编程输入一行文字,找出其中的大写字母,小写字母,空格,数字,及其他字符的个数#include void main() int a=0,b=0,c=0,d=0,e=0,i=0; char *p,s20; while(si=getchar()!=n)i+; p=s; while(*p!=10) if(*p=A&*p=a&*p=0&*p=9) d+; else e+; p+;
4、printf(大写字母 %d 小写字母 %dn,a,b); printf(空格 %d 数字 %d 非字符 %dn,c,d,e);9.5写一个函数,将3 3矩阵转置#include stdio.hvoid Transpose(int (*matrix)3) int temp; int i, j; for(i=1;i3;i+)/*转置*/ for(j=0;ji;j+) temp = *(*(matrix+j)+i); *(*(matrix+j)+i) = *(*(matrix+i)+j); *(*(matrix+i)+j) = temp; void main() int a33 = 1,2,3,4
5、,5,6,7,8,9; Transpose(a); for(int i = 0;i3;i+) for(int j=0;j3;j+) printf(%d ,aij); printf(n); 9.6用指向一维数组的指针做函数参数#include#includeint main()void sort(char (*s)6);/一维数组的指针做函数参数int i;char str106;char (*p)6;/定义一维数组的指针做函数参数printf(please input string:/n);for(i=0;i10;i+)scanf(%s,&stri);p=str;/将str一维数组指针,赋值给
6、p; sort(p);printf(the output sequence :/n);for(i=0;i10;i+)printf(%s/n,stri);return 0;void sort(char (*s)6)/s指向一维数组的指针做函数参数;int i,j;char temp6, *t;t=temp; for(i=0;i9;i+)/i应该小于9;如果小于10,那么就比较了9+1次;按照冒泡法则,for(j=0;j0)strcpy(t,sj);strcpy(sj,sj+1);strcpy(sj+1,t);9.7编一程序,用指针数组在主函数中输入十个等长的字符串。用另一函数对它们排序,然后在主
7、函数中输出10个已排好序的字符串/用指针数组处理#include#includeint main()void sort(char *);int i;char str106, *p10;printf(please input 10 string:/n);for(i=0;i10;i+)/首先将10个str的首地址赋值给10个pi;pi=stri;/将第i个字符串的首地址赋予指针数组p的第i个元素;for(i=0;i10;i+)scanf(%s,pi);/scanf输入到&pisort(p);printf(the output 10 string:/n);for(i=0;i10;i+)printf(
8、%s/n,pi);/输出到pi;void sort(char *s)char *temp;int i,j;for(i=0;i9;i+)for(j=0;j0)temp=*(s+j);/*(s+j)指向数组指针,我想应该是字符串的首地址;所以可以直接赋值给temp指针;*(s+j)=*(s+j+1);*(s+j+1)=temp;9.8指针 将n个数按输入时顺序的逆序排列,用函数实现#include void reverse(int a,int n) int *p; for(p=a+n-1;p=a;p-) printf(%4d,*p); printf(n);main() int a20,n; int
9、 i; printf(Input the length of array:); scanf(%d,&n); printf(Input the number of array:); for(i=0;is2,则输出正值;如果s1s2,则输出负值。#include main() int strcmp(char *p1,char *p2); int m; char str120,str220,*p1,*p2; printf(Input two strings:n); scanf(%s,str1); scanf(%s,str2); p1=&str10; p2=&str20; m=strcmp(p1,p2
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 语言 指针 精选 习题 答案 13
限制150内