代码搜索:iNum
找到约 785 项符合「iNum」的源代码
代码结果 785
www.eeworm.com/read/15915/581117
htm 0649inum.htm
www.eeworm.com/read/15970/617084
htm 0649inum.htm
www.eeworm.com/read/209559/4973956
h xfs_inum.h
/*
* Copyright (c) 2000-2003 Silicon Graphics, Inc. All Rights Reserved.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of version 2 of the GNU Gene
www.eeworm.com/read/316872/3605386
h xfs_inum.h
/*
* Copyright (c) 2000-2003,2005 Silicon Graphics, Inc.
* All Rights Reserved.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Pu
www.eeworm.com/read/381484/9090335
h board.h
#include "ioCC2430.h"
#ifndef BOARD_H
#define BOARD_H
#define INT_ON 1
#define INT_OFF 0
#define INT_SET 1
#define INT_CLR 0
//全局中断使能
#define GLOBAL_INT_ENABLE(a) EA=a
#define DISABLE_A
www.eeworm.com/read/326053/13168992
cpp 程序5.04:带参数的函数.cpp
/* 程序5.4:带参数的函数.cpp: */
#include
using namespace std;
int Accept() //模块1:接受数
{
int iNum;
cout >iNum;
return iNum;
}
int Add(int iNum1,int iNum2) //模块
www.eeworm.com/read/326053/13169006
cpp 程序5.05:声明函数原型.cpp
/* 程序5.5:声明函数原型.cpp: */
#include
using namespace std;
int Accept(); //声明Accept()函数原型
int Add(int iNum1,int iNum2); //声明Add()函数原型
void Display(int iSum); //声明Display()函数原型
int