代码搜索:

找到约 10,000 项符合「」的源代码

代码结果 10,000
www.eeworm.com/read/392035/8366409

dsp starclock.dsp

# Microsoft Developer Studio Project File - Name="starclock" - Package Owner= # Microsoft Developer Studio Generated Build File, Format Version 6.00 # ** DO NOT EDIT ** # TARGTYPE "Win32 (x86)
www.eeworm.com/read/292231/8366410

c break_test.c

void main() { int i; while( 1 ) { if( i ) continue; break; } }
www.eeworm.com/read/392035/8366411

h stdafx.h

// stdafx.h : include file for standard system include files, // or project specific include files that are used frequently, but // are changed infrequently // #if !defined(AFX_STDAFX_H__2
www.eeworm.com/read/292231/8366412

c gcd.c

/* A program to perform Euclid's Algorithm to compute gcd. */ int gcd( int u, int v ) { if( v == 0 ) return u; else return gcd( v, u-u/v*v); /* u-u/v*v == u mod v */ } void ma
www.eeworm.com/read/392035/8366413

clw starclock.clw

; CLW file contains information for the MFC ClassWizard [General Info] Version=1 LastClass=CMyDlg LastTemplate=CDialog NewFileInclude1=#include "stdafx.h" NewFileInclude2=#include "starclock.h
www.eeworm.com/read/292231/8366414

txt p-code list.txt

lda 取变量地址 lod 取变量值 ldci 取int类型常数 ldcf 取float类型常数 ldcc 取char类型常数 ldc 取bool类型常数 fjp 错误跳跃 tjp 正确跳跃 ujp 无条件跳跃 stn 存储并保留值 sto 存储不保留值 ind 根据堆栈上的地址取值 ixa 根据堆栈上的地址取地址 a
www.eeworm.com/read/392035/8366415

cpp stdafx.cpp

// stdafx.cpp : source file that includes just the standard includes // starclock.pch will be the pre-compiled header // stdafx.obj will contain the pre-compiled type information #include "stdafx
www.eeworm.com/read/192685/8366416

txt 怎样去掉从dll返回来的字符串后面的无效字符.txt

从 DLL返 回 来 的 字 符 串 往 往 都 是 以 Chr(0)结 尾 的 , 你 可 以 使 用 InStr函 数 查 找 Chr(0), 然 后 取 前 面 的 字 符 , 如 : s = Left(s, InStr(s, Chr(0)) - 1)
www.eeworm.com/read/292231/8366417

h textview.h

#if !defined(AFX_TEXTVIEW_H__F1AB2BE2_48E3_41C8_84DB_619DB745A50C__INCLUDED_) #define AFX_TEXTVIEW_H__F1AB2BE2_48E3_41C8_84DB_619DB745A50C__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _
www.eeworm.com/read/292231/8366418

cpp childfrm.cpp

// ChildFrm.cpp : implementation of the CChildFrame class // #include "stdafx.h" #include "cminus.h" #include "ChildFrm.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static cha