简单!
全部博文(366)
发布时间:2013-07-01 22:26:57
在标准C中,isdigit函数可以用来判断字符是否为0~9之间的数字。比如:int a = isdigit('1');int b = isdigit('a');int c = isdigit(3);可以使用宏定义去实现这个简单的函数,如下所示:#define isdigit(c) ((c) >= '0' && (c) <= '9')Linux内核中isdigit的实现,.........【阅读全文】
发布时间:2013-06-29 11:51:52
Linux中rand()会返回一随机数值,范围在0至RAND_MAX 间,其中RAND_MAX定义在stdlib.h,其值为2147483647。例一:#include #include #define LOOP_TIMES????10int main(int argc, char *argv[]){.........【阅读全文】
发布时间:2013-04-20 12:43:56
* *** ***** **************** ******* ***** *** *#includeint diamond(.........【阅读全文】
发布时间:2012-12-30 14:11:48
1.检测接口的 inet_addr,netmask,broad_addr#include <stdio.h>#include <string.h>#include <stdlib.h>#include <errno.h>#include <unistd.h>#include <sys/types.h>#include <sys/socket.h>#include <netinet/in.h>#include <arpa/inet.h>#include <sys/ioctl.h>......【阅读全文】