#程序运行 1 理解test.c, 说出程序功能 2 编译运行程序,提交运行截图 ##test.c的程序功能 #include <stdio.h> #include <stdlib.h> #include <fcntl.h> main() { int fd ; int newfd; char lin Read More
posted @ 2021-12-13 11:37 绒绒的欧嘛harper Views(57) Comments(0) Diggs(0) Edit
#算法测试(课上测试) Ubuntu下支持哪些C语言的排序算法,查找算法?你是怎么得到的?提交截图 针对下面的数组,调用Linux的快速排序或二分查找算法。查找算法查自己的学号。 用随机数函数产生10个1-1000之间的数存到一个数组int arr[11]中, arr[10] = 学号的后三位。 # Read More
posted @ 2021-12-13 11:25 绒绒的欧嘛harper Views(43) Comments(0) Diggs(0) Edit
#嵌入式基础 ##要求 ##实现 Read More
posted @ 2021-12-13 10:52 绒绒的欧嘛harper Views(31) Comments(0) Diggs(0) Edit
#整数范围与类型转换 -2147483647-1 == 2147483648U -2147483647-1 < -2147483647 -2147483647-1 < 2147483647 (unsigned)-2147483647-1 < 2147483647 上面四个表达式成立吗?为什么?并用C Read More
posted @ 2021-12-13 10:18 绒绒的欧嘛harper Views(72) Comments(0) Diggs(0) Edit
*/