代码搜索:enum
找到约 10,000 项符合「enum」的源代码
代码结果 10,000
www.eeworm.com/read/432289/8613740
cpp enum.cpp
//: C03:Enum.cpp
// From Thinking in C++, 2nd Edition
// at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// Keeping track of shapes.
enum shape_type {
www.eeworm.com/read/387725/8657803
cpp enum.cpp
#include "stdafx.h"
#include
#include "usbview.h"
extern CPtrArray g_Usb;
PCHAR DriverNameToDeviceDesc (PCHAR DriverName);
void AddLeaf (LPARAM lParam, LPTSTR lpszText);
www.eeworm.com/read/286954/8735228
c enum.c
# include
void main()
{
/* 经过下面的定义后,默认有:blue=0 red=1 ... black=4 */
enum color {blue, red, yellow, purple, black};
enum color i, j, k, pri;
int n, loop;
n = 0;
for(i=blue;
www.eeworm.com/read/286264/8775338
lst enum.lst
C51 COMPILER V7.06 ENUM 02/28/2006 10:35:52 PAGE 1
C51 COMPILER V7.06, COMPILATION OF MODULE ENUM
OBJECT MODULE PLACED IN en
www.eeworm.com/read/286264/8775342
c enum.c
#include /* 为使用printf函数而加入*/
#include "reg52.h"
void init_ser()
{
SCON = 0x50; /* SCON: mode 1, 8-bit UART, enable rcvr */
TMOD |= 0x20; /* TMOD: timer 1, mode 2, 8-bit rel
www.eeworm.com/read/286264/8775348
obj enum.obj
www.eeworm.com/read/286264/8775353
opt enum.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/286264/8775370
plg enum.plg
礦ision2 Build Log
Project:
F:\单片机的C语言光盘\exam\CH05\enum\enum.uv2
Project File Date: 12/02/2005
Output:
Build target 'Target 1'
linking...
Pro
www.eeworm.com/read/187205/8843827
cs enum.cs
//
// enum.cs: Enum handling.
//
// Author: Miguel de Icaza (miguel@gnu.org)
// Ravi Pratap (ravi@ximian.com)
// Marek Safar (marek.safar@seznam.cz)
//
// Licensed under the te
www.eeworm.com/read/284998/8877336
cpp enum.cpp
//: C03:Enum.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
// Keeping track of shapes
enum Sha