排序
编程实现在一维数组中查找
编程实现在一维数组中查找、插入和删除一个元素的操作。 #include 'stdio.h'#include 'conio.h'void main(){ int x,i,j,k,found;int a[11]={8,28,28,38,48,58,68,78,88,98};printf('请输入您...
用参数宏实现两个参数的值交换
下列程序的执行结果是什么?(利用参数宏实现两个参数的值交换)#include 'stdio.h'#define SWAP(a,b) {int t=a; a=b; b=t;} void main(){ int x,y; printf('enter 2 integer (x y) to s...