C语言程序设计.复习3.指针<最基础的>

在键盘中任意输入两个整数,交换后输出。
#include
void Swap(int *x, int *y);
int main()
{
int a, b;
printf("Please enter a, b:");
scanf("%d %d", &a, &b);
printf("Before swap : a = %d, b = %d/n",a, b);
Swap(&a, &b); //地址
printf("After swap : a = %d, b = %d", a, b);
return 0;
}

//函数作用 :交换
void Swap(int *x, int *y)
{
int temp;
temp = *x;
*x = *y;
*y = temp;
}
输入成绩,计算并输出最高分及相应的学号 
#include
#define N 40
void FindMax(int score[], long num[], int n, int *pMaxScore,

C语言程序设计.复习3.指针<最基础的>最先出现在Python成神之路

版权声明:
作者:zhangchen
链接:https://www.techfm.club/p/7830.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>