排序
指针变量将1个字符数组中的字符倒序输出
编写一个程序通过指针变量将1个字符数组中的字符倒序输出。 #include 'stdio.h'#include 'conio.h'#define MAXLEN 25void main( ){ char s[MAXLEN],*p; int i,j; printf('Please input a...
通过指针变量按字符串的长度对三个字符串从大到小排序
编写一个程序通过指针变量按字符串的长度对三个字符串从大到小排序,要求将这三个字符串存储在一个二维数组中。 法一:#include 'stdio.h'#include 'conio.h'#include 'string.h'#define M 3...
指针变量找出一维数组中的最大值和最小值
编写一个程序通过指针变量找出一维数组中的最大值和最小值,并交换最大值与最小值的位置。 #include 'stdio.h'#include 'conio.h'#define N 5void main( ){ int a[N],*pmax,*pmin,...
利用指向函数的指针实现函数调用
以下程序利用指向函数的指针实现函数调用,完成可选择的加减乘除运算。#include 'stdio.h'/*定义函数add*/int add(int x,int y){ printf('%d+%d=',x,y);return x+y;}/*定义函数sub*/int...
利用指针找出3个整数中的最小数
以下程序的功能是利用指针找出3个整数中的最小数。#include 'stdio.h'void main( ){ int *p1,*p2,*p3,min,x,y,z;p1=&x;p2=&y;p3=&z;printf('please input three integer: ');scanf(...