2012年7月13日

哈哈,自己想的考题,下次整你们,

摘要: #include <stdio.h>#include <string.h>int main (){ char string1[10] = { '\0' }; char string2[10] = { '\0' }; int i; for (i = 0; i < 10; i++) { string1[i] = 'a'; } strcpy (string2, string1); printf("the string2 is %s\n", string2); printf("the strin 阅读全文

posted @ 2012-07-13 18:02 Richard.FreeBSD 阅读(162) 评论(0) 推荐(0) 编辑

What Makes A Great Programmer?

摘要: What Makes A Great Programmer?By Alan Johnson @commondream31 May 2011 | Category: CodeI remember it like it was yesterday. It was the year 2000, Dr. Pargas was standing at the front of our data structures class talking about some data structure-y topic while an SSH session was projected on the wall 阅读全文

posted @ 2012-07-13 12:00 Richard.FreeBSD 阅读(198) 评论(0) 推荐(0) 编辑

Linux定时器的使用

摘要: 使用定时器的目的无非是为了周期性的执行某一任务,或者是到了一个指定时间去执行某一个任务。要达到这一目的,一般有两个常见的比较有效的方法。一 个是用linux内部的三个定时器,另一个是用sleep, usleep函数让进程睡眠一段时间,使用alarm定时发出一个信号,还有那就是用gettimeofday, difftime等自己来计算时间间隔,然后时间到了就执行某一任务,但是这种方法效率低,所以不常用。alarmalarm用在不需要经确定时的时候,返回之前剩余的秒数。NAME alarm - set an alarm clock for delivery of a signalSYNOPSIS 阅读全文

posted @ 2012-07-13 11:53 Richard.FreeBSD 阅读(232) 评论(0) 推荐(0) 编辑

导航