Unix/Linux, mysql, web,企业应用
发布时间:2013-04-05 12:41:15
一个进程终止了,这个进程就完全退出了,之后就再也不存在这个进程了。而进程停止(STOPPED)了,其实是暂停的意思,之后又可以继续(CONTINUE)运行。......【阅读全文】
发布时间:2013-03-28 22:46:46
先上代码再解释:#include <stdio.h>#include <fcntl.h>#include <sys/types.h>#include <sys/stat.h>#include <linux/limits.h>int main(){ int i; //关闭所有已经打开的文件.........【阅读全文】
发布时间:2013-03-28 22:24:59
C语言的库函数也很牛逼啊!很牛逼也就导致了很方便,C语言也能很方便的组装SQL语句。实在想不出啥废话了,直接上代码先:#include <stdio.h>#define SQL_SIZE 500int main(){ char sql[SQL_SIZE];  .........【阅读全文】
发布时间:2013-03-28 22:00:44
1,字符串转整型(一)#include <stdlib.h>int atoi(const char *nptr);字符串转化为整型long atol(const char *nptr);字符串转化为长整型long long atoll(const char *nptr);long long atoq(const char *nptr);字符串转化为long long 类型英文手册很简单,直接上说明:The atoi() function converts the initial.........【阅读全文】
发布时间:2013-03-24 23:55:20
1,字符串连接char *strcat(char *dest, const char *src);char *strncat(char *dest, const char *src, size_t n);英文manual并不难,直接上英文:The strcat() function appends the src string to the dest string, over‐writing the terminating null byte ('\0') at the end of dest, an.........【阅读全文】