摘要: 练习题2.11 1 /* 2 CSAPP练习题2.11,并做了一些扩展 3 指定或者用户输入一个数组(100以内),打印反转前后的所有数组元素 4 */ 5 #include <stdio.h> 6 7 void inplace_swap(int *x, int *y); //互换值 8 void 阅读全文
posted @ 2023-04-09 23:07 何景知 阅读(48) 评论(0) 推荐(0)