简单!
全部博文(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(.........【阅读全文】
发布时间:2013-01-05 18:02:30
Linux环境下,编译嵌入式系统时会用到make menuconfig或make config命令,这些命令通常会使用ncurses库,如果ncurses库没有安装设置正确,可能出现如下的错误信息:error opening terminal Linuxerror opening terminal xtermerror opening terminal vt100error opening terminal vt102error opening terminal unknownerror opening terminal......【阅读全文】