代码搜索:自举升压结构
找到约 10,000 项符合「自举升压结构」的源代码
代码结果 10,000
www.eeworm.com/read/140057/13113198
m ex0508.m
% EX0508 用try... catch... end结构来进行计算
n=4;
a=magic(n);
m=3;
b=eye(3);
try
c=a*b
catch
c=a(1:m,1:m)*b
end
lasterr
www.eeworm.com/read/241771/13121067
c tc23-5.c
/*****************
tc23-5.c
学生信息系统
******************/
/* 文件头与主函数 */
#include "stdio.h"
#include "stdlib.h"
#include "string.h"
typedef struct Student /* 定义链表结构 */
{
int num;
www.eeworm.com/read/241345/13153947
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/240051/13238717
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/138033/13270833
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/324057/13290795
cpp main.cpp
#include "iostream.h"
struct student
{
int idNumber;
char name[15];
int age;
char department[20];
float gpa;
};
void display(student *arg);//结构指针作为函数参数
void main()
{
student s1={4280
www.eeworm.com/read/137188/13341261
h uart.h
#ifndef __UART_H__
#define __UART_H__
#include "Includes.h"
//串口配置结构
typedef struct __tag_UART_CONFIG__
{
uint baud;
uint parity;
uint datalen;
uint stop;
uint afc; // auto flow c
www.eeworm.com/read/137188/13341274
bak uart.h.bak
#ifndef __UART_H__
#define __UART_H__
#include "Includes.h"
//串口配置结构
typedef struct __tag_UART_CONFIG__
{
uint baud;
uint parity;
uint datalen;
uint stop;
uint afc; // auto flow c
www.eeworm.com/read/322056/13390629
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/321010/13413674
cs class1.cs
using System;
using System.Collections;
using System.Threading;
// 这是用来保存信息的数据结构,将作为参数传递
public class SomeState
{
public int Cookie;
public SomeState(int iCookie)
{
Cookie = iCookie;