上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 37 下一页
摘要: #include <stdio.h> #include <stdlib.h> int main() { srand(100); //设置种子,种子一样,每次启动程序时生成的数也一样 int i; int num; for(i=0; i<10; i++) { num = rand(); printf( 阅读全文
posted @ 2019-12-03 23:21 xd_xumaomao 阅读(156) 评论(0) 推荐(0) 编辑
摘要: 使用示例: #include <stdio.h> int main () { /* 局部变量定义 */ int a = 10; /* do 循环执行 */ LOOP:do { if( a == 15) { /* 跳过迭代 */ a = a + 1; goto LOOP; } printf("a 的值 阅读全文
posted @ 2019-12-03 22:34 xd_xumaomao 阅读(150) 评论(0) 推荐(0) 编辑
摘要: int main() { int a = 10; int b = 20; int c = a > b ? a : b; printf("%d\n", c); return 0; } 阅读全文
posted @ 2019-12-03 22:10 xd_xumaomao 阅读(103) 评论(0) 推荐(0) 编辑
摘要: 作用 防止编译器优化变量 如对于下面这段行代码: int main() { int a; a = 1; a = 2; a = 3; return 0; } 编译器可能回跳过前面两句赋值,直接执行 a = 3 阅读全文
posted @ 2019-12-03 21:57 xd_xumaomao 阅读(92) 评论(0) 推荐(0) 编辑
摘要: 十进制:以正常数字1-9开头,如:123 八进制:以数字0开头,如:0123 十六进制:以数字0x开头,如:0x123 二进制:c 语言不能直接书写二进制数 printf打印: 十进制:%d 八进制:%o 十六进制:%x 阅读全文
posted @ 2019-12-03 21:09 xd_xumaomao 阅读(1023) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-12-03 15:48 xd_xumaomao 阅读(158) 评论(0) 推荐(0) 编辑
摘要: 功能 调用一个外部程序(命令都是 C 写的可执行程序) 使用示例 system('ls -alh') 阅读全文
posted @ 2019-12-03 15:44 xd_xumaomao 阅读(185) 评论(0) 推荐(0) 编辑
摘要: 编译 c 代码: gcc file.c gcc file.c -o outputname 阅读全文
posted @ 2019-12-03 12:33 xd_xumaomao 阅读(109) 评论(0) 推荐(0) 编辑
摘要: 进程间通信常用的4种方法 1. 管道:简单 2. 信号:系统开销小 3. 共享映射区:有无血缘关系的进程间通信都可以 4. 本地套接字:稳定 管道 匿名管道pipe 适用于有血缘关系的进程间通信 pipe函数 #include<unistd.h> int pipe(int filedes[2]); 阅读全文
posted @ 2019-12-02 16:34 xd_xumaomao 阅读(96) 评论(0) 推荐(0) 编辑
摘要: 编译安装(复杂麻烦) RPM安装 RPM介绍 Redhat提供了rpm管理体系已经编译的软件包:针对不同的平台系统编译目标软件包操作系统维护安装信息rpm 只能安装已经下载到本地机器上的rpm 包,且不能自动处理包与包之间的依赖问题 rpm安装 rpm -ivh filename (i表示insta 阅读全文
posted @ 2019-12-01 12:28 xd_xumaomao 阅读(184) 评论(0) 推荐(0) 编辑
上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 37 下一页