摘要:
各位朋友,下面是我收集的书籍,介绍给大家,有需要可以分享给大家,如果看的还可以,请购买纸质版的图书。 驱动器 J 中的卷是 Elements 卷的序列号是 8AAF-3206 j:\ 的目录 2014/01/20 20:00 1,533,385 WinCE.pdf2010/09/21 14:43 1 阅读全文
摘要:
没有什么新的内容,只是自己的源代码,现在打包提供下载,初学者可以看看,高手请移步,不要耽误您的时间。 下面是一段代码: 下载地址:链接: https://pan.baidu.com/s/1c2IQkCC 密码: fnw7 阅读全文
摘要:
/* 本程序用来测试数据结构中的线性结构:顺序表 */ #include #include #define LINEAR_MAX_SIZE 64 struct LinearList { int* List; //顺序表指针 unsigned short int ListLen; //顺序表最大的元素个数 unsigned short int CurrentL... 阅读全文
摘要:
1 /* 2 IntToStr: 将整型数据转换为字符串 3 */ 4 5 #include 6 7 8 void int_to_str(const unsigned long int i_number, char *str); 9 10 int main(int argc,char*argv[]) 11 { 12 unsigned long int i_te... 阅读全文
摘要:
/* 本程序打印EOF的值 */ #include int main(int argc,char* argv[],char* env) { printf("EOF = %d",EOF); getc(stdin); return 0; } 阅读全文
摘要:
1 /* 2 本程序用来将输入的制表符替换为\t, 而将退格替换为\b, 3 将反斜杠替换为\\ 4 */ 5 6 #include 7 #include 8 9 typedef struct node 10 { 11 char Input; 12 struct node* next; 13 }NODE; 14 ... 阅读全文
摘要:
没什么新的内容,自己的练习代码,供大家点评。 阅读全文
摘要:
没什么新的内容,把自己写的练习代码贴出来,供大家批判。 阅读全文