C程序设计实验报告
实验项目:
8.31.指针基础及指针运算
8.3.2.数据交换
8.3.3.字符串反转及字符串连接
8.3.4.数组元素奇偶排列
姓名:涂宇昌 实验地点:教室 实验时间:2020/7/7
一、实验目的与要求
8.31.指针基础及指针运算
8.3.2.数据交换
8.3.3.字符串反转及字符串连接
8.3.4.数组元素奇偶排列
二、实验内容
1、实验练习:8.3.1.指针基础及指针运算
1.问题的简单描述:
(1)掌握指针的概念和定义的方法;
(2)掌握指针的操作符和指针的运算;
(3)掌握指针和数组的关系;
(4)掌握指针和字符串的关系;
(5)熟悉指针为函数的参数及返回指针的函数;
(6)了解函数指针。
2.实验代码:
#include<stdio.h> int main() { int *p,a,c=3; float *q,b; p=&a; q=&b; printf("Please Input the Value of a,b:"); scanf("%d%f",p,q); printf("Result: "); printf("%d,%f ",a,b); printf("%d,%f ",*p,*q); printf("The Address of a,b:%p,%p ",&a,&b); printf("The Address of a,b:%p,%p ",p,q); p=&c; printf("c=%d ",*p); printf("The Address of c:%x,%x ",p,&c); return 0; }
3.问题分析:
无
2、实验练习:
1.问题的简单描述:
(1)定义两个函数,分别为void swap1(int a, int b)和void swap2(int *a, int *b),用于交换a、b的值。
(2)从主函数中分别输人两个整型变量a、b。
(3)从主函数中分别调用上述两个交换函数,并打印输出交换后a、b的结果。
2.实验代码
#include<stdio.h> int swap1(int x,int y); int swap2(int *x,int *y); int main() { int a,b; printf("Please Input a=:"); scanf("%d",&a); printf(" b=:"); scanf("%d",&b); swap1(a,b); printf(" After Call swap1:a=%d b=%d ",a,b); swap2(&a,&b); printf(" After Call swap2:a=%d b=%d ",a,b); return 0; } int swap1(int x,int y) { int temp; temp=x; x=y; y=temp; } int swap2(int *x,int *y) { int temp; temp=*x; *x=*y; *y=temp; }
3.问题分析
无
3、实验练习:
1.问题的简单描述:
(1)定义两个字符指针,通过gets()函数输入两个字符串。
(2)定义一个函数char *reverse(char *str), 通过指针移动方式将字符串反转。
(3)定义一个函数char *Iink(char *strl, char *str2),通过指针移动方式将两个字符串连接起来。
(4)从主函数中分别调用上述函数,输人字符串并打印输出结果。
2.实验代码
#include<stdio.h> char *reverse(char *str); char *link(char *str1,char *str2); int main() { char str[30],str1[30],*str2; printf("Input Reversing Character String:"); gets(str); str2=reverse(str); printf(" Output Reversed Character String:"); puts(str2); printf("Input String1:"); gets(str); printf("Input String2:"); gets(str1); printf("Link String1 and String2:"); str2=link(str,str1); puts(str2); return 0; } char *reverse(char *str) { char *p,*q,temp; p=str,q=str; while(*p!='