虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

INclude

INclude是一个计算机专业术语,一指C/C++中包含头文件命令,用于将指定头文件嵌入源文件中。二指INclude指令,在JSP中包含一个静态的文件,同时解析这个文件中的JSP语句。三指PHP语句。
  • pRTI 自带的INclude文件包

    pRTI 自带的INclude文件包

    标签: INclude pRTI

    上传时间: 2016-12-29

    上传用户:ruixue198909

  • //使用gray code的解法 #INclude <iostream> #INclude <cmath> using namespace std #define

    //使用gray code的解法 #INclude <iostream> #INclude <cmath> using namespace std #define ZERO 0 #define ONE 1 #define ODD 1 #define EVEN 0 #define RIGHT 1 #define LEFT 0 #define MAX 10

    标签: INclude namespace iostream define

    上传时间: 2016-12-31

    上传用户:luke5347

  • #INclude<stdio.h> #INclude<string.h> #INclude<limits.h> #INclude<unistd.h>

    #INclude<stdio.h> #INclude<string.h> #INclude<limits.h> #INclude<unistd.h> #INclude<sys/types.h> #define PROMPT_STRING "[myshell]$" #define QUIT_STRING "exit\n" static char inbuf[MAX_CANON] char * g_ptr char * g_lim extern void yylex() int main (void){ for( ){ if(fputs(PROMPT_STRING,stdout)==EOF) continue if(fgets(inbuf,MAX_CANON,stdin)==NULL) continue if(strcmp(inbuf,QUIT_STRING)==0) break g_ptr = inbuf g_lim = inbuf + strlen(inbuf) yylex() } return 0 }

    标签: INclude gt lt limits

    上传时间: 2016-12-31

    上传用户:colinal

  • 帧缓冲#INclude <stdio.h> #INclude <stdlib.h> #INclude <string.h> #INclude <s

    帧缓冲#INclude <stdio.h> #INclude <stdlib.h> #INclude <string.h> #INclude <stdint.h> #INclude <unistd.h> #INclude <fcntl.h> #INclude <sys/ioctl.h> #INclude <sys/mman.h> #INclude <asm/page.h> #INclude <linux/fb.h> #define TRUE 1 #define FALSE 2 //a framebuffer device structure typedef struct fbdev{ int fb unsigned long fb_mem_offset unsigned long fb_mem struct fb_fix_screeninfo fb_fix

    标签: INclude lt gt stdlib

    上传时间: 2013-12-11

    上传用户:bjgaofei

  • #INclude "iostream.h" #INclude "iomanip.h" #define N 20 //学习样本个数 #define IN 1 //输入层神经元数目 #define

    #INclude "iostream.h" #INclude "iomanip.h" #define N 20 //学习样本个数 #define IN 1 //输入层神经元数目 #define HN 8 //隐层神经元数目 #define ON 1 //输出层神经元数目 double P[IN] //单个样本输入数据 double T[ON] //单个样本教师数据 double W[HN][IN] //输入层至隐层权值 double V[ON][HN] //隐层至输出层权值 double X[HN] //隐层的输入 double Y[ON] //输出层的输入 double H[HN] //隐层的输出

    标签: define INclude iostream iomanip

    上传时间: 2014-01-01

    上传用户:凌云御清风

  • //顺序表的建立、查找、插入与删除 #INclude <stdio.h> #INclude <malloc.h> #INclude <stdlib.h> #

    //顺序表的建立、查找、插入与删除 #INclude <stdio.h> #INclude <malloc.h> #INclude <stdlib.h> #define ListSize 100 //表最大长度 //结构定义 typedef struct SeqList { int node[ListSize] //存放表结点 int length //当前表长度 } SeqList //插入元素 insertList(SeqList *list, int e) { int i=list->length-1 //先将i指定为最后一项 if(i>=ListSize-1) //表已经达到最大长度ListSize { printf("表已满,不能增加新的项!\n")

    标签: INclude gt lt malloc

    上传时间: 2014-01-17

    上传用户:dongqiangqiang

  • INclude emccsoft s60_2x

    INclude emccsoft s60_2x

    标签: emccsoft INclude 60

    上传时间: 2013-12-19

    上传用户:netwolf

  • #INclude <stdio.h> #INclude <stdlib.h> #define OK 1 #define OVERFLOW -2

    #INclude <stdio.h> #INclude <stdlib.h> #define OK 1 #define OVERFLOW -2 typedef int status typedef struct LinkList{ //用带表头结点的有序链表表示多项式 float coef //系数 int expn //指数 struct LinkList *next //指向后继的指针 }*polynomail //结构体类型的指针

    标签: INclude define OVERFLOW stdlib

    上传时间: 2014-12-06

    上传用户:1079836864

  • PC与单片机双向通讯智能温控程序 #INclude <AT89X51.H> #INclude <intrins.h> #define Key_UP P1_0 #def

    PC与单片机双向通讯智能温控程序 #INclude <AT89X51.H> #INclude <intrins.h> #define Key_UP P1_0 #define Key_DOWN P1_1 #define Key_SET P1_2 #define RelayOutPort P2_0 #define LEDPort P0 #define DELPort P2_1 #define LEDTwoC P3_6 #define LEDThreeC P3_7 #define TMPort P2_7 #define INBUF_LEN 5 //数据长度 unsigned char inbuf1[INBUF_LEN]={ 0 , 0 , 0 , 0 , 0 } //发送缓冲区 unsigned char inbuf2[50] //接收缓冲区 unsigned char count3 void init_serialcomm( void ) { SCON = 0x50 //SCON: serail mode 1, 8-bit UART, enable ucvr TMOD |= 0x20 //TMOD: timer 1, mode 2, 8-bit reload PCON |= 0x80 //SMOD=1 TH1 = 0xFA //Baud:4800 fosc=11.0592MHz IE |= 0x90 //Enable Serial Interrupt TR1 = 1 // timer 1 run } //向串口发送一个字符 void send_char_com( unsigned char ch) { SBUF=ch while (TI== 0 ) TI= 0

    标签: INclude intrins define Key_UP

    上传时间: 2014-11-29

    上传用户:风之骄子

  • VB遥控播放器红外遥控解码 #INclude <regX52.h> #define c(x) (x*110592/120000) sbit Ir_Pin=P3^2 sb

    VB遥控播放器红外遥控解码 #INclude <regX52.h> #define c(x) (x*110592/120000) sbit Ir_Pin=P3^2 sbit beep=P2^1 //sbit RELAY=P2^0 #define INBUF_LEN 4 //数据长度 unsigned char inbuf1[INBUF_LEN]={ 0 , 0 , 0 , 0 } //发送缓冲区 unsigned char inbuf2[50] //接收缓冲区 unsigned char count3 void init_serialcomm( void ) { SCON = 0x50 //SCON: serail mode 1, 8-bit UART, enable ucvr T2CON=0x30 TH2=0x00 TL2=0x00 RCAP2H=0xFF RCAP2L=0xDC TR2=1 } //向串口发送一个字符 void send_char_com( unsigned char ch) { SBUF=ch while (TI== 0 ) TI= 0

    标签: INclude 110592 120000 define

    上传时间: 2013-12-21

    上传用户:yph853211