发布时间:2014-02-08 18:21:03
原文:http://blog.sina.com.cn/s/blog_8043547601013rxf.html1、system(执行shell命令) 相关函数 fork,execve,waitpid,popen表头文件 #include<stdlib.h>定义函数 int system(const char * string);函数说明 system()会调用fork()产生子进程,由子进程来调用/bin/sh-c string来执行参数string字符串.........【阅读全文】
发布时间:2014-02-08 18:14:42
原文:http://blog.csdn.net/21aspnet/article/details/6740110当linux中的C api函数发生异常时,一般会将errno变量(需include errno.h)赋一个整数值,不同的值表示不同的含义,可以通过查看该值推测出错的原因,在实际编程中用这一招解决了不少原本看来莫名其妙的问题。但是errno是一个数字,代表的具体含义还要到errno.h.........【阅读全文】
发布时间:2014-01-14 18:22:22
以下转自http://xinxuan3038.blog.163.com/blog/static/70346209201071125558292/,用的应该是MS SQL吧,没有进行验证。以下是产生1000个10位的随机数的代码方法一:alter PROC proc_randCardID_LYJ2ASdeclare @i intDECLARE @randCardID char(19)DECLARE @r numeric(15,8)set @i=1while @i......【阅读全文】