代码搜索:initial
找到约 10,000 项符合「initial」的源代码
代码结果 10,000
www.eeworm.com/read/242723/12989222
psr hid_mouse.psr
#ifdef DEV_1409
// PSKEY_AMUX_A
&022b = 1f00
// PSKEY_AMUX_B
&022c = 0001
// PSKEY_INITIAL_PIO_STATE
&03b5 = 0020 0020 0020 0000
// PSKEY_HIDIO_AGILENT
&044d = 0009 000a 000b
// PSKEY_HIDIO_B
www.eeworm.com/read/241748/13122798
c timer.c
//-----------------------------------------------------------------------------
// Net TIMER.C
//
// This module sets up the timer and handles the timer interrupt
//-------------------------------
www.eeworm.com/read/240985/13181751
cpp emp4_20.cpp
// emp4_20}
#include "linklist.h"
void print(link l)
{
if (l!=NULL){
visite_snode(l,1);
print(l->next);
}
}
void main()
{
link l;
initial_llist();
get_sllist(l);
printf("\n
www.eeworm.com/read/240985/13181789
cpp emp8_092.cpp
#include"grary1.h"
main()
{
const int n1=10,n2=25;
bb1 a;
GrpArr ag;
int i,x;
char ch;
for(i=n1;i
www.eeworm.com/read/240985/13181887
cpp emp4_19.cpp
// EMP4_19
#include "linklist.h"
void rvisitecchdllist(dulink l)
{
dulink p;
p=l->prior;
while (p!=l){
visite_dnode(p,1);
dispint_atdnode_angle(p->data,p,90);
p=p->prior;
}
}
www.eeworm.com/read/240985/13181889
cpp emp4_21.cpp
// emp4_21
#include "linklist.h"
dulink dl;
void printd(dulink l)
{
if (l!=dl){
visite_dnode(l,1);
printd(l->prior);
}
}
void main()
{
initial_llist();
get_cchdllist(dl);
se
www.eeworm.com/read/240985/13181908
cpp emp8_17.cpp
#include"grary1.h"
main()
{
const int n=15;
bb1 b ;
GrpArr ag;
int i;
char ch;
b[n]=0;
for (i=1;i
www.eeworm.com/read/240985/13181922
cpp emp5_10.cpp
// emp5_10
#include "btrechar.h"
void inordert(bitre t,bptrlink ptr)
{
if (t!=NULL){
inordert(t->lchild,ptr);
bptr_point_to(ptr, t);
printf("%c",t->data);
getch();
inordert(t->rc
www.eeworm.com/read/240985/13181949
cpp emp6_07.cpp
// emp6_07
#include "trees.h"
void preordertree(tree t,tptrlink &ptr)
{
if (t!=NULL){
tptr_point_to(ptr, t);
putchar(t->data);
getch();
preordertree(t->firstson,ptr);
www.eeworm.com/read/139156/13186023
c timer.c
//-----------------------------------------------------------------------------
// Net TIMER.C
//
// This module sets up the timer and handles the timer interrupt
//-------------------------------