代码搜索:数字时钟程序
找到约 10,000 项符合「数字时钟程序」的源代码
代码结果 10,000
www.eeworm.com/read/243072/12965921
pdf 基本算法源程序.pdf
www.eeworm.com/read/329176/12972376
c 键盘驱动程序.c
#include
#include
#include
#include
#include
#include
www.eeworm.com/read/141787/12984266
txt 源程序6.txt
// wm_bitio.h
#ifndef _WIX_WM_BITIO_H_01_
#define _WIX_WM_BITIO_H_01_
// 取log2(n)的upper_bound
int UpperLog2(int n);
// 取log2(n)的lower_bound
int LowerLog2(int n);
// 将位指针*piByte(字节偏移),
www.eeworm.com/read/141787/12984269
txt 源程序1.txt
// bitio.cpp
#include
#include
#include "bitio.h"
#include "errhand.h"
#define PACIFIER_COUNT 2047
BIT_FILE* OpenOutputBitFile( char* name )
{
BIT_FILE* bit_file;
www.eeworm.com/read/141787/12984276
txt 源程序4.txt
// errhand.h
#ifndef _ERRHAND_H_DCC_001
#define _ERRHAND_H_DCC_001
void fatal_error(char * fmt, ...);
#endif // _ERRHAND_H_DCC_001
www.eeworm.com/read/141787/12984282
txt 源程序5.txt
/////////////////////////////////////////////////////////
// 取log2(n)的upper_bound
int UpperLog2(int n)
{
int i = 0;
if (n > 0)
{
int m = 1;
while(1)
{
if (m >= n)
return i
www.eeworm.com/read/141787/12984289
txt 源程序2.txt
// bitio.h
#ifndef _WIX_BITIO_H_01
#define _WIX_BITIO_H_01
#include
typedef struct bit_file
{
FILE* file;
unsigned char mask;
int rack;
int pacifier_counter; // 工作计数
www.eeworm.com/read/329063/12987125
doc 毕设源程序.doc
www.eeworm.com/read/328728/13006207
txt 能运行c程序.txt
#include
#include
#include
void next(int n);
void incr();/*添加*/
void dele();/*删除*/
void disp();/*显示*/
void bore(char);/*借与还*/
void sread(char *);/*文件读到缓冲区*/
vo
www.eeworm.com/read/328490/13024535
txt 隐藏启动程序方法.txt
隐藏启动程序方法
让程序可以随系统启动自动加载,并且在“启动”菜单和注册表中都找不到它。方法:
在“开始→运行”中键入“gpedit.msc”,启动“组策略”,展开“用户配置→管理模板→系统→登录”,启用“在用户登录时运行这些程序”项,并单击“显示”按钮,添加某个程序,重新登录后该程序就会自动运行。
打开“开始→程序→启动”菜单,看不到我们添加的程序项;在“开始→运行”中 ...