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

搜索资源列表

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

  2. 第八章:枚举,位运算 枚举   在实际问题中, 有些变量的取值被限定在一个有限的范围内。例如,一个星期内只有七天,一年只有十二个月, 一个班每周有六门课程等等。如果把这些量说明为整型, 字符型或其它类型显然是不妥当的。 为此,C语言提供了一种称为“枚举”的类型。在“枚举”类型的定义中列举出所有可能的取值, 被说明为该“枚举”类型的变量取值不能超过定义的范围。应该说明的是, 枚举类型是一种基本数据类型,而不是一种构造类型, 因为它不能再分解为任何基本类型。 枚举类型的定义和枚举变量的说明 一、枚
  3. 所属分类:C

    • 发布日期:2009-05-22
    • 文件大小:9kb
    • 提供者:fanhaoqiang
  1. c++ 面试题 总结

  2. C++面试题 1.是不是一个父类写了一个virtual 函数,如果子类覆盖它的函数不加virtual ,也能实现多态? virtual修饰符会被隐形继承的。 private 也被集成,只事派生类没有访问权限而已 virtual可加可不加 子类的空间里有父类的所有变量(static除外) 同一个函数只存在一个实体(inline除外) 子类覆盖它的函数不加virtual ,也能实现多态。 在子类的空间里,有父类的私有变量。私有变量不能直接访问。 --------------------------
  3. 所属分类:C

    • 发布日期:2009-09-16
    • 文件大小:155kb
    • 提供者:rzvs8275161
  1. 中国移动cmpp3协议ruby 源码,

  2. 中国移动cmpp3协议ruby实现,实现简单功能,内容编码考虑不周,有许多地方有待完善。
  3. 所属分类:C++

    • 发布日期:2009-10-20
    • 文件大小:188kb
    • 提供者:iamknight
  1. Undocumented Windows NT 带图完整英文版chm

  2. Table of Contents Chapter 1: Windows NT: An Inside Look EVALUATING WINDOWS NT DELVING INTO THE WINDOWS NT ARCHITECTURE SUMMARY Chapter 2: Writing Windows NT Device Drivers PREREQUISITES TO WRITING NT DEVICE DRIVERS DRIVER BUILD PROCEDURE STRUCT URE
  3. 所属分类:其它

    • 发布日期:2009-10-22
    • 文件大小:407kb
    • 提供者:thepromised
  1. 网络编程之PING实现

  2. // ping.cpp : Defines the entry point for the console application. // #pragma pack(4) #include "winsock2.h" #include "stdlib.h" #include "stdio.h" #define ICMP_ECHO 8 #define ICMP_ECHOREPLY 0 #define ICMP_MIN 8 // minimum 8 byte icmp packet (just he
  3. 所属分类:Web开发

    • 发布日期:2009-11-09
    • 文件大小:79kb
    • 提供者:softwind1025
  1. ds1302时钟 液晶显示

  2. 自认为还行 有仿真效果 /************************************************************************** THE REAL TIMER DS1302 DRIVER LIB COPYRIGHT (c) 2005 BY JJJ. -- ALL RIGHTS RESERVED -- File Name: DS1302.h Author: Jiang Jian Jun Created: 2003/7/21 Modified: NO
  3. 所属分类:C

    • 发布日期:2010-01-08
    • 文件大小:75kb
    • 提供者:zy157466145
  1. uboott移植实验手册及技术文档

  2. 实验三 移植U-Boot-1.3.1 实验 【实验目的】 了解 U-Boot-1.3.1 的代码结构,掌握其移植方法。 【实验环境】 1、Ubuntu 7.0.4发行版 2、u-boot-1.3.1 3、FS2410平台 4、交叉编译器 arm-softfloat-linux-gnu-gcc-3.4.5 【实验步骤】 一、建立自己的平台类型 (1)解压文件 #tar jxvf u-boot-1.3.1.tar.bz2 (2)进入 U-Boot源码目录 #cd u-boot-1.3.1 (3)创
  3. 所属分类:Flash

    • 发布日期:2010-01-28
    • 文件大小:2mb
    • 提供者:yequnanren
  1. 权威经典c语言设计指南

  2. c语言设计指南,权威经典c语言设计指南。 C语言简洁、紧凑,使用方便、灵活。ANSI C一共只有32个关键字: auto break case char const continue default do double else enum extern float for goto if int long register return short signed static sizof struct switch typedef union unsigned void volatile wh
  3. 所属分类:C

    • 发布日期:2010-02-23
    • 文件大小:722kb
    • 提供者:josh7x
  1. 密码输入 - BACKUP

  2. include #include"intrins.h" #define keyport P3 //定义向电脑发送检测状态的结构 struct safe_status { int temperature_monitor; unsigned char alarm_monitor; unsigned char lock_monitor; }; void delay_for_input(unsigned char ms) ; void key_scan(void); void FastLcdInit
  3. 所属分类:硬件开发

    • 发布日期:2010-03-03
    • 文件大小:52kb
    • 提供者:JJM152768JJM
  1. VC++ 获取CPU信息的方法

  2. #include "StdAfx.h" #include "cpuassembly.h" // bit flags set by cpuid when called with register eax set to 1 #define MMX_SUPPORTED 0x00800000 #define SSE_SUPPORTED 0x02000000 #define SSE2_SUPPORTED 0x04000000 #define AMD_3DNOW_SUPPORTED 0x80000000
  3. 所属分类:C++

    • 发布日期:2010-05-10
    • 文件大小:7kb
    • 提供者:linandixon
  1. MTK定时器消息传递机制

  2. typedef struct timertable { /* store the timer_id. MSB(Most Significant Bit) is align_timer_mask */ U16 timer_id[SIMULTANEOUS_TIMER_NUM]; /* store the event_id that returns from evshed_set_event() */ eventid event_id[SIMULTANEOUS_TIMER_NUM]; /* stor
  3. 所属分类:Java

    • 发布日期:2010-05-23
    • 文件大小:86kb
    • 提供者:hqzmyhh
  1. 数据结构课程设计 二叉树遍历代码

  2. /****头文件"head.h"**********/ #include #include struct BiT { char data; BiT *lchild, *rchild; }; struct Queue { BiT *P; Queue *next; }; struct LinkQueue { Queue *front; //队头指针 Queue *rear; //队尾指针 }; /**************函数体*********/ BiT* CreateBiTree(int n
  3. 所属分类:C

    • 发布日期:2010-06-17
    • 文件大小:2kb
    • 提供者:red58735451
  1. 用查表法实现音频转换

  2. 实现PCM和ALAW间的转换 The files in this directory comprise ANSI-C language reference implementations of the CCITT (International Telegraph and Telephone Consultative Committee) G.711, G.721 and G.723 voice compressions. They have been tested on Sun SPARCst
  3. 所属分类:C

    • 发布日期:2010-08-04
    • 文件大小:19kb
    • 提供者:scutlemon
  1. Lcc C Compiler

  2. aWhat's new in the new version of lcc-win ---------------------------------------- Dec 3: Added SphericalBesselY + SphericalBesselK + SphericalBesselJ to the special functions package. Updated the documentation. Dec 2: Fixed problems with comparison
  3. 所属分类:C

    • 发布日期:2010-09-30
    • 文件大小:6mb
    • 提供者:ywj1225
  1. Programming with Lcc-win

  2. Chapter 1 Introduction to C 1 Why learn C? 1 Program organization 2 Hello 3 Program input 4 What are “function parameters” ? 5 Console mode programs and windows programs 6 An overview of the compilation process 6 The run time environment 7 An overvi
  3. 所属分类:C

    • 发布日期:2010-09-30
    • 文件大小:2mb
    • 提供者:ywj1225
  1. pt7c4307 驱动

  2. pt7c4307 驱动 #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #define DRIVER_VERSION "0.01&q uot; /* Register map */ /* rtc section */ #def
  3. 所属分类:C

    • 发布日期:2010-10-14
    • 文件大小:8kb
    • 提供者:linfengdu
  1. 哈弗曼 数据结构实验

  2. const unsigned int n=256; //字符数 const unsigned int m=256*2-1; //结点总数 struct HTNode{ //压缩用Huffman树结点 unsigned long weight; //字符频度(权值) unsigned int parent,lchild,rchild; }; struct Buffer{ //字节缓冲压缩用Huffman树 char ch; //字节 unsigned int bits; //实际比特数 }; c
  3. 所属分类:其它

    • 发布日期:2010-12-11
    • 文件大小:308kb
    • 提供者:carolineyj
  1. 串口通信测试_C#.rar

  2. 绝对可以编译使用 串口通讯类: using System; using System.Runtime.InteropServices; namespace JustinIO { class CommPort { public string PortNum; public int BaudRate; public byte ByteSize; public byte Parity; // 0-4=no,odd,even,mark,space public byte StopBits; // 0,
  3. 所属分类:C#

    • 发布日期:2011-03-23
    • 文件大小:410kb
    • 提供者:linshenglong777
  1. 网络数据包捕获与应用的VC++6.0编程

  2. 网络数据包捕获与应用的VC++6.0编程 《网络数据包捕获与应用的VC++6.0编程》 美国GeneChiu基金资助 网络数据包捕获与应用的VC++6.0编程 研究生 方松茂 对以太帧头、IPv4报头、IPv6报头、TCP报头及UDP报头格式这几种常用数据报头 别利用WinPcap和原始套接字编写程序进行分析。并利用MFC类库,采用链表结构存放捕 获的网络数据的方案,实现了局域网内Internet数据采集的应用程序。 另外,还编写了一个利用WinPcap提供的发送数据报的函数实现SYN Flo
  3. 所属分类:C/C++

    • 发布日期:2011-04-14
    • 文件大小:994kb
    • 提供者:lixuejiangqq
  1. DSP 的一些原码,PDF

  2. struct TCR_BITS { // bits descr iption Uint16 OUTSTS:1; // 0 Current state of TOUT Uint16 FORCE:1; // 1 Force TOUT Uint16 POL:1; // 2 Output polarity Uint16 TOG:1; // 3 Output toggle mode Uint16 TSS:1; // 4 Timer Start/Stop Uint16 TRB:1; // 5 Timer
  3. 所属分类:C

    • 发布日期:2011-05-25
    • 文件大小:3mb
    • 提供者:shilongzhan
« 12 3 4 »