摘要: 001、 [root@PC1 test]# ls test.c [root@PC1 test]# cat test.c ##测试c程序 #include <stdio.h> int main(void) { int i,j; i = j = 5; // 连续赋值 printf("i = %d\n", 阅读全文
posted @ 2024-11-06 19:28 小鲨鱼2018 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 001、 [root@PC1 test]# ls test.c [root@PC1 test]# cat test.c ## 测试程序 #include <stdio.h> int main(void) { int var1 = 5; // 初始化一个变量var1 int array1[var1] 阅读全文
posted @ 2024-11-06 19:11 小鲨鱼2018 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 001、一维数组 [root@PC1 test1]# ls test.c [root@PC1 test1]# cat test.c #include <stdio.h> int main(void) { int v1[5] = {3, 4, 8}; printf("length of v1 is % 阅读全文
posted @ 2024-11-06 09:23 小鲨鱼2018 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 001、 [root@PC1 test1]# ls a.txt [root@PC1 test1]# cat a.txt ## 测试数据,对如下文本按照a、b进行排序输出 01 02b 03 04 05 06a 07 08 09 10b 11 12 13 14b 15 16 17 18a 19 20 阅读全文
posted @ 2024-11-06 00:39 小鲨鱼2018 阅读(5) 评论(0) 推荐(0) 编辑