您好,欢迎光临本网站![请登录][注册会员]  

搜索资源列表

  1. C语言程序设计标准教程

  2. 适用于初学第十章:文件 文件 文件的基本概念   所谓“文件”是指一组相关数据的有序集合。 这个数据集有一个名称,叫做文件名。 实际上在前面的各章中我们已经多次使用了文件,例如源程序文件、目标文件、可执行文件、库文件 (头文件)等。文件通常是驻留在外部介质(如磁盘等)上的, 在使用时才调入内存中来。从不同的角度可对文件作不同的分类。从用户的角度看,文件可分为普通文件和设备文件两种。   普通文件是指驻留在磁盘或其它外部介质上的一个有序数据集,可以是源文件、目标文件、可执行程序; 也可以是一组待
  3. 所属分类:C

    • 发布日期:2009-05-22
    • 文件大小:20480
    • 提供者:fanhaoqiang
  1. c++思想Vs函数集

  2. c语言库函数大全--资料收集 Turbo C 2.0 函数中文说明大全 分类函数,所在函数库为ctype.h int isalpha(int ch) 若ch是字母('A'-'Z','a'-'z')返回非0值,否则返回0 int isalnum(int ch) 若ch是字母('A'-'Z','a'-'z')或数字('0'-'9'),返回非0值,否则返回0 int isascii(int ch) 若ch是字符(ASCII码中的0-127)返回非0值,否则返回0 int iscntrl(int ch
  3. 所属分类:C

    • 发布日期:2009-05-22
    • 文件大小:161792
    • 提供者:lxm247
  1. c语言编写的贪吃蛇游戏

  2. #define LEFT 0x4B00 #define RIGHT 0x4D00 #define UP 0x4800 #define DOWN 0x5000 #define ESC 0x011B #define ENTER 0x1C0D #include #include #include #include #include #include #include #include typedef char element; element map[20][20]; ...展开收缩
  3. 所属分类:C

    • 发布日期:2009-05-24
    • 文件大小:2048
    • 提供者:colors220
  1. c库文件bios\time中的函数示例

  2. c语言中的库函数用法示例,还在编写中,暂时传两个
  3. 所属分类:C

    • 发布日期:2009-07-07
    • 文件大小:5120
    • 提供者:wskdgv666
  1. linux内核 0.11版本源码 带中文注释

  2. 目录树 下面再给个样例 ├─Makefile │ ├─boot │ bootsect.s │ head.s │ setup.s │ ├─fs │ bitmap.c │ block_dev.c │ buffer.c │ char_dev.c │ exec.c │ fcntl.c │ file_dev.c │ file_table.c │ inode.c │ ioctl.c │ Mak efile │ namei.c │ open.c │ pipe.c │ read_write.c │ stat.
  3. 所属分类:C

    • 发布日期:2009-08-31
    • 文件大小:290816
    • 提供者:paomadi
  1. linux 0.11源码 带中文注释

  2. /* * linux/init/main.c * * (C) 1991 Linus Torvalds */ #define __LIBRARY__ // 定义该变量是为了包括定义在unistd.h 中的内嵌汇编代码等信息。 #include // *.h 头文件所在的默认目录是include/,则在代码中就不用明确指明位置。 // 如果不是UNIX 的标准头文件,则需要指明所在的目录,并用双引号括住。 // 标准符号常数与类型文件。定义了各种符号常数和类型,并申明了各种函 数。 // 如果定
  3. 所属分类:网络攻防

    • 发布日期:2009-10-24
    • 文件大小:290816
    • 提供者:wangbin6818
  1. linux 0.11 源码 中文注释

  2. /* * linux/init/main.c * * (C) 1991 Linus Torvalds */ #define __LIBRARY__ // 定义该变量是为了包括定义在unistd.h 中的内嵌汇编代码等信息。 #include // *.h 头文件所在的默认目录是include/,则在代码中就不用明确指明位置。 // 如果不是UNIX 的标准头文件,则需要指明所在的目录,并用双引号括住。 // 标准符号常数与类型文件。定义了各种符号常数和类型,并申明了各种函数。 // 如果定义
  3. 所属分类:Linux

    • 发布日期:2009-11-19
    • 文件大小:290816
    • 提供者:rishihk
  1. linux-0.11 [内核源代码带英文注解]

  2. /* * linux/init/main.c * * (C) 1991 Linus Torvalds */ #define __LIBRARY__ #include #include /* * we need this inline - forking from kernel space will result * in NO COPY ON WRITE (!!!), until an execve is executed. This * is no problem, but for th
  3. 所属分类:Linux

    • 发布日期:2010-04-02
    • 文件大小:119808
    • 提供者:zhousiwei
  1. linux内核0.11注释版

  2. /* * linux/init/main.c * * (C) 1991 Linus Torvalds */ #define __LIBRARY__ // 定义该变量是为了包括定义在unistd.h 中的内嵌汇编代码等信息。 #include // *.h 头文件所在的默认目录是include/,则在代码中就不用明确指明位置。 // 如果不是UNIX 的标准头文件,则需要指明所在的目录,并用双引号括住。 // 标准符号常数与类型文件。定义了各种符号常数和类型,并申明了各种函数。 // 如果定义
  3. 所属分类:网络攻防

    • 发布日期:2010-04-27
    • 文件大小:290816
    • 提供者:YYQSH
  1. C语言编写的推箱子游戏源码

  2. #include #include #include #include #include #include #include #include #include #include #define MAX 3 #define STEPMAX 3 #define Key_R 0x1372 #define Key_Up 0x4800 #define Key_Enter 0x1c0d #define Key_Down 0x5000 #define Key_P 0x1970 #define Key_
  3. 所属分类:C

    • 发布日期:2010-05-28
    • 文件大小:22528
    • 提供者:iqizheng
  1. linux - 0.11 源码 带中文注释

  2. /* * linux/init/main.c * * (C) 1991 Linus Torvalds */ #define __LIBRARY__ // 定义该变量是为了包括定义在unistd.h 中的内嵌汇编代码等信息。 #include // *.h 头文件所在的默认目录是include/,则在代码中就不用明确指明位置。 // 如果不是UNIX 的标准头文件,则需要指明所在的目录,并用双引号括住。 // 标准符号常数与类型文件。定义了各种符号常数和类型,并申明了各种函数。 // 如果定义
  3. 所属分类:网络攻防

    • 发布日期:2010-12-02
    • 文件大小:279552
    • 提供者:wu_wenyang
  1. acpi控制笔记本风扇转速

  2. 笔记本的风扇控制 ---------------------------------------- 09 November 2006. Summary of changes for version 20061109: 1) ACPI CA Core Subsystem: Optimized the Load ASL operator in the case where the source operand is an operation region. Simply map the opera
  3. 所属分类:桌面系统

    • 发布日期:2011-04-16
    • 文件大小:925696
    • 提供者:yuanxin69
  1. C语言函数大全[表格形式]

  2. C语言函数大全[表格形式]1.字符函数,所在函数库为ctype.h……………………………………………………………………2 2.数学函数,所在函数库为math.h、stdlib.h、string.h、float.h………………………………………2 3.目录函数,所在函数库为dir.h、dos.h………………………………………………………………3 4.进程函数,所在函数库为stdlib.h、process.h…………………………………………………………4 5.输入输出子程序,所在函数库为io.h、
  3. 所属分类:C

    • 发布日期:2011-11-10
    • 文件大小:367616
    • 提供者:prettystony
  1. Qemu-1.0.1 for windows

  2. Qemu 1.0.1 Windows QEMU emulator version 1.0.1, Copyright (c) 2003-2008 Fabrice Bellard usage: qemu [options] [disk_image] 'disk_image' is a raw hard disk image for IDE hard disk 0 Standard options: -h or -help display this help and exit -version di
  3. 所属分类:虚拟化

    • 发布日期:2012-05-06
    • 文件大小:7340032
    • 提供者:shubinglin
  1. C语言函数大全

  2. 目 录 1.字符函数,所在函数库为ctype.h……………………………………………………………………2 2.数学函数,所在函数库为math.h、stdlib.h、string.h、float.h………………………………………2 3.目录函数,所在函数库为dir.h、dos.h………………………………………………………………3 4.进程函数,所在函数库为stdlib.h、process.h…………………………………………………………4 5.输入输出子程序,所在函数库为io.h、conio.h、s
  3. 所属分类:软考等考

    • 发布日期:2013-05-21
    • 文件大小:418816
    • 提供者:gsy111bbb
  1. C程序900例

  2. C程序900例 #include #include #include void main (void) { int status = 0; int old_status = 0; do { status = biosprint(2, 0, 0); // Read LPT1 if (status != old_status) { if (status & 1) printf ("Time-out\t"); if (status & 8) printf ("Output Error\t");
  3. 所属分类:C

    • 发布日期:2014-03-04
    • 文件大小:365568
    • 提供者:killudie
  1. uhdd.sys源码

  2. XMGR RDISK and UIDE DOS Device Drivers 1 Descr iption XMGR RDISK and UIDE are a group of DOS device drivers for a PC system with an 80386+ CPU and using MS DOS V5 0+ or equivalent XMGR is a DOS driver which works as an "XMS manager" and pr
  3. 所属分类:DOS

    • 发布日期:2015-03-03
    • 文件大小:175104
    • 提供者:zjq20032006
  1. grub4dos-V0.4.6a-2017-02-04更新

  2. 更新说明: 2017-02-04(yaya) Ls command: Empty Folder returns false. 2016-12-08(yaya) 修正lz4、vhd不显示解压缩进度指示。增加lzma解压缩进度指示。 2016-11-09(不点) 0x8205 bit 5 = 1: 使checkkey闲置循环停止指令。 2016-04-13(yaya) 支持动画菜单 setmenu --graphic-entry=类型=菜单行数=菜单列数=图形宽(像素)=图形高(像素)=菜单行间距
  3. 所属分类:DOS

    • 发布日期:2017-03-05
    • 文件大小:675840
    • 提供者:qq_37767541
  1. IPMI second-gen-interface-spec-v2.pdf

  2. IPMI 接口标准第二版 Intelligent Platform Management Interface Specification Second GenerationIntelligent Platform Management Interface Specification IPMI NON-DISCLOSURE AGREEMENT DO NoT download these files (collectively, the"Confidential Information )until
  3. 所属分类:网络监控

    • 发布日期:2019-09-04
    • 文件大小:3145728
    • 提供者:jiliuyj