上一页 1 ··· 8 9 10 11 12 13 14 15 下一页

2015年6月1日

摘要: 目录结构 ./main.c #include #include "./lib/jtlib1.h" int main() { printf("running..\n"); sayhello(); return 0; } ./makefile mai... 阅读全文
posted @ 2015-06-01 15:25 阮減显 阅读(101) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #include #include #include #include #include #define PERM S_IRUSR|S_IWUSR int main(int argc,char **argv) { i... 阅读全文
posted @ 2015-06-01 15:24 阮減显 阅读(92) 评论(0) 推荐(0) 编辑
摘要: #include #include typedef struct my_node mynode; struct my_node{ struct my_node *next; int data; }; void push_node(mynode **... 阅读全文
posted @ 2015-06-01 15:24 阮減显 阅读(261) 评论(0) 推荐(0) 编辑
摘要: 以下程序使用信号量控制程序运行 “信号”量 “变”量 /*信号量(semaphore)是变量,是一种特殊的变量。它仅取正值。 对信息号量的操作只有2种:等待(wait)和发送信号(signal)*/ #include #include #include #include ... 阅读全文
posted @ 2015-06-01 15:21 阮減显 阅读(106) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #include #include #include #include #include #include #define MSG_FILE "server.c" #define BUFFER 255 #define PE... 阅读全文
posted @ 2015-06-01 15:21 阮減显 阅读(85) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #include #include #include #include #include #define BUF_SIZE 300 int main() { int s[2]; cha... 阅读全文
posted @ 2015-06-01 15:20 阮減显 阅读(108) 评论(0) 推荐(0) 编辑
摘要: DECLARE v_servid NUMBER(16); v_stdno VARCHAR2(30); BEGIN FOR i IN (SELECT rownum rn, t.* FROM tb_server t WHERE t.... 阅读全文
posted @ 2015-06-01 15:20 阮減显 阅读(100) 评论(0) 推荐(0) 编辑
摘要: select to_char(current_timestamp,'yyyy-mm-dd hh24:mi:ss.ff3'),to_char(sysdate,'yyyy-mm-dd hh24:mi:ss'),to_date('2010-01-10 00:00:00','yyyy-mm-dd hh... 阅读全文
posted @ 2015-06-01 15:19 阮減显 阅读(118) 评论(0) 推荐(0) 编辑
摘要: 1.导入by数据文件。 mysql>load data infile '文件路径' into table 表名 fields terminated by '字段分隔符' lines terminated by '行分隔符'; 样例: mysql>load data infile 'D:\\M... 阅读全文
posted @ 2015-06-01 15:17 阮減显 阅读(87) 评论(0) 推荐(0) 编辑
摘要: #include #include #include typedef struct Aclass_s Aclass; struct Aclass_s { int m_iMember1; char m_sMember2[40]; void (... 阅读全文
posted @ 2015-06-01 15:17 阮減显 阅读(59) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 下一页

导航