摘要:
目录结构 ./main.c #include #include "./lib/jtlib1.h" int main() { printf("running..\n"); sayhello(); return 0; } ./makefile mai... 阅读全文
摘要:
#include #include #include #include #include #include #include #include #define PERM S_IRUSR|S_IWUSR int main(int argc,char **argv) { i... 阅读全文
摘要:
#include #include typedef struct my_node mynode; struct my_node{ struct my_node *next; int data; }; void push_node(mynode **... 阅读全文
摘要:
以下程序使用信号量控制程序运行 “信号”量 “变”量 /*信号量(semaphore)是变量,是一种特殊的变量。它仅取正值。 对信息号量的操作只有2种:等待(wait)和发送信号(signal)*/ #include #include #include #include ... 阅读全文
摘要:
#include #include #include #include #include #include #include #include #include #define MSG_FILE "server.c" #define BUFFER 255 #define PE... 阅读全文
摘要:
#include #include #include #include #include #include #include #include #define BUF_SIZE 300 int main() { int s[2]; cha... 阅读全文
摘要:
DECLARE v_servid NUMBER(16); v_stdno VARCHAR2(30); BEGIN FOR i IN (SELECT rownum rn, t.* FROM tb_server t WHERE t.... 阅读全文
摘要:
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... 阅读全文
摘要:
1.导入by数据文件。 mysql>load data infile '文件路径' into table 表名 fields terminated by '字段分隔符' lines terminated by '行分隔符'; 样例: mysql>load data infile 'D:\\M... 阅读全文