全部博文(573)
发布时间:2015-12-23 14:57:33
C写的实现wc和ls函数 以下是用linux C写的实现wc功能的函数#include #define BEGIN 1;int main(int argc, char *argv[]){ int characters, lines, words, state; char c; state = characters = lines = words = .........【阅读全文】
发布时间:2015-12-23 14:52:58
用c语言模拟进程调度/* *Author:Mr Sunny *Time:Oct 2010 * */#include #include #include #include #define N 3enum state { e, r, t, w, c};struct PCB { int id, priorit.........【阅读全文】
发布时间:2015-12-23 14:48:01
标准I/O的三种缓冲 最近,有几个同学让我看了一个程序,后来发现问题都是出在使用printf()函数进行输出时的缓冲模式造成的。比如这样的程序:#include <stdio.h>int main(){.........【阅读全文】