上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 403 下一页
摘要: 二代测序中的library是什么意思? 阅读全文
posted @ 2024-11-09 18:47 小鲨鱼2018 阅读(20) 评论(0) 推荐(0)
摘要: 存储期可以分为两类:自动存储期和静态存储期。 自动存储期:变量的作用周期在程序块内; 在程序块中使用一般的变量声明模式即可。 静态存储期:变量的作用周期在整个程序期间; 有两种声明方式,1、在程序块外声明; 2、在程序块内使用static关键字 001、自动存储期测试 [root@PC1 test] 阅读全文
posted @ 2024-11-09 17:58 小鲨鱼2018 阅读(51) 评论(0) 推荐(0)
摘要: 001、没有返回值的函数 [root@PC1 test]# ls test.c [root@PC1 test]# cat test.c ## 测试c程序 #include <stdio.h> void put_star(int a) // 定义不含返回值的函数 { while(a-- > 0) pu 阅读全文
posted @ 2024-11-09 17:47 小鲨鱼2018 阅读(55) 评论(0) 推荐(0)
摘要: 001、方法1 while循环 [root@PC1 test]# ls test.c [root@PC1 test]# cat test.c ## 测试c程序 #include <stdio.h> int get_length(int a) { int length = 0; while(a > 0 阅读全文
posted @ 2024-11-08 23:07 小鲨鱼2018 阅读(29) 评论(0) 推荐(0)
摘要: c语言中函数形参 -- 值传递,址传递,引用传递 阅读全文
posted @ 2024-11-08 09:39 小鲨鱼2018 阅读(9) 评论(0) 推荐(0)
摘要: 001、 [root@PC1 test]# ls a.txt [root@PC1 test]# cat a.txt ## 测试数据 abcd KHG DETT dre ssae rtE [root@PC1 test]# awk '{$1 = toupper(substr($1, 1, 1)) sub 阅读全文
posted @ 2024-11-07 23:56 小鲨鱼2018 阅读(32) 评论(0) 推荐(0)
摘要: 001、函数体内的变量名不可以和形参同名 a、 [root@PC1 test]# ls test.c [root@PC1 test]# cat test.c #include <stdio.h> int max(int a, int b) { int k = 100; return a > b ? 阅读全文
posted @ 2024-11-07 15:38 小鲨鱼2018 阅读(44) 评论(0) 推荐(0)
摘要: 001、 [root@PC1 test]# ls test.c [root@PC1 test]# cat test.c #include <stdio.h> int max(int a, int b) // 创建一个名为max的函数 { int k = 100; if(a > b) { return 阅读全文
posted @ 2024-11-07 13:04 小鲨鱼2018 阅读(32) 评论(0) 推荐(0)
摘要: Hifi和ONT 有什么区别 阅读全文
posted @ 2024-11-07 00:56 小鲨鱼2018 阅读(144) 评论(0) 推荐(0)
摘要: 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 阅读(130) 评论(0) 推荐(0)
上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 403 下一页