代码搜索:reverse

找到约 4,015 项符合「reverse」的源代码

代码结果 4,015
www.eeworm.com/read/365390/9864692

asm main.asm

$nolist ;******************************************************************************* ;******************************************************************************* ;*
www.eeworm.com/read/365390/9864866

med main.med

Copyright(C) TOSHIBA CORPORATION 1987-2003 All rights reserved Mon Sep 03 09:08:48 2007 Toshiba Unified Macro processor (32) V1.0o [Page 1] Runtime option : -T870C -l -I D:\yuanyy\5514T
www.eeworm.com/read/169320/9866663

sql 得到sql中的数据库目录.sql

/*--得到数据库的文件目录 @dbname 指定要取得目录的数据库名 如果指定的数据不存在,返回安装SQL时设置的默认数据目录 如果指定NULL,则返回默认的SQL备份目录名 --邹建 2003.10(引用请保留此信息)--*/ /*--调用示例 select 数据库文件目录=dbo.f_getdbpath('tempdb') ,[默认SQL SE
www.eeworm.com/read/362203/10013080

opt dingshi.opt

### uVision2 Project, (C) Keil Software ### Do not modify ! cExt (*.c) aExt (*.s*; *.src; *.a*) oExt (*.obj) lExt (*.lib) tExt (*.txt; *.h; *.inc) pExt (*.plm) CppX (*.cpp) DaveTm {
www.eeworm.com/read/357852/10200151

cc stl-iteratoradaptors.cc

// Filename: STL-iteratorAdaptors.cc #include #include using namespace std; template void display(Iter fst, Iter lst, const char* ttl) { cout
www.eeworm.com/read/357508/10208106

6 gdc.6

.\" $Id: gdc.6,v 1.2 2003/03/15 20:50:03 tom Exp $ .TH GDC 6 .SH NAME gdc \- grand digital clock (curses) .SH SYNOPSIS .B gdc [-s] [ .I n ] .SH DESCRIPTION .I Gdc runs a digital clock made of reverse-
www.eeworm.com/read/356914/10219132

c delay.c

/* delay.c - delay by D time samples */ void delay(D, w) /* \(w[0]\) = input, \(w[D]\) = output */ int D; double *w; { int i; for (i=D; i>=1; i--)
www.eeworm.com/read/426147/10281149

cpp main.cpp

#include #include #include using namespace std; void print(int x){ cout
www.eeworm.com/read/426147/10282106

cpp main.cpp

#include #include int main(void){ using namespace std; set s; s.insert(10); s.insert(15); s.insert(11); s.insert(17); s.insert(13); s.insert(19); s.insert(1
www.eeworm.com/read/355030/10299232

cpp priorityqueue2.cpp

//: C20:PriorityQueue2.cpp // From Thinking in C++, 2nd Edition // Available at http://www.BruceEckel.com // (c) Bruce Eckel 1999 // Copyright notice in Copyright.txt // Changing the priority #i