代码搜索:自举升压结构
找到约 10,000 项符合「自举升压结构」的源代码
代码结果 10,000
www.eeworm.com/read/156960/5608294
cpp p1-70.cpp
#include
//定义结构
struct student {
char name[10];
float grade;
};
//交换student类型的数据
void swap(student &x,student &y) //swap的参数为引用传递方式
{
student temp;
temp
www.eeworm.com/read/156889/5609354
txt a1.txt
表结构: E:\VFPAPP\CH05\TEACHER.DBF
数据记录数: 0
最近更新的时间: 09/20/04
备注文件块大小: 64
代码页: 936
字段 字段名
www.eeworm.com/read/154022/5643386
c fatinit.c
#ifndef _FAT_DEFINE
#include "FAT.c"
#endif
void FATInit(void);
void FATInit(void)
{
register BYTE i;
DPT = (struct DPTStr *)(DiskBuffer+0x1be); //分区表结构指针
BOOTSEC = (struct BootSec
www.eeworm.com/read/474198/6816423
c classmanage.c
#include /*standard input and output标准输入输出函数*/
#include /*字符串函数*/
#include /**getch()的引入*/
#define null 0;
/************************所有的结构体********
www.eeworm.com/read/182642/6840477
h queue.h
//#ifndef _QUEUE_H_
//#define _QUEUE_H_
class BinTree;
//队列用链表存储
typedef BinTree* QDataType; //队列的数据类型
struct LinkQueue{ //结构体定义队列
QDataType data;
LinkQueue *front;
LinkQueue *rear;
www.eeworm.com/read/472935/6860344
h c3-2.h
/* c3-2.h 单链队列--队列的链式存储结构 */
typedef struct QNode
{
QElemType data;
struct QNode *next;
}QNode,*QueuePtr;
typedef struct
{
QueuePtr front,rear; /* 队头、队尾指针 */
}LinkQueue;
www.eeworm.com/read/295512/8156853
cpp p1-70.cpp
#include
//定义结构
struct student {
char name[10];
float grade;
};
//交换student类型的数据
void swap(student &x,student &y) //swap的参数为引用传递方式
{
student temp;
temp
www.eeworm.com/read/295491/8159101
cpp p1-70.cpp
#include
//定义结构
struct student {
char name[10];
float grade;
};
//交换student类型的数据
void swap(student &x,student &y) //swap的参数为引用传递方式
{
student temp;
temp
www.eeworm.com/read/195327/8164121
cpp p1-70.cpp
#include
//定义结构
struct student {
char name[10];
float grade;
};
//交换student类型的数据
void swap(student &x,student &y) //swap的参数为引用传递方式
{
student temp;
temp
www.eeworm.com/read/394517/8220515
ini kernel32.ini
[KERNEL32]
WritePrivateProfileStringA=写ini文件
GetCommandLineA=得到命令行
GetPrivateProfileStringA=读ini文件
GetPrivateProfileStructA=读ini结构
SetFilePointer=设置文件指针
WriteFile=写文件
IsBadReadPtr=测试坏的只读指针
Unm