代码搜索:Switch
找到约 10,000 项符合「Switch」的源代码
代码结果 10,000
www.eeworm.com/read/148694/5712042
c usrthfork.c
#include
#include
#include
int main(void){
pid_t pid;
switch (pid = fork()){
case 0:
printf("child\n");
break;
default:
printf("parent\n");
br
www.eeworm.com/read/147885/5719323
c psdemo.c
#include
#include
#include
#include
#include
#include
#include
#include
www.eeworm.com/read/147766/5721122
c pci_fixup.c
/*
* FILE NAME
* arch/mips/vr41xx/nec-eagle/pci_fixup.c
*
* BRIEF MODULE DESCRIPTION
* The NEC Eagle/Hawk Board specific PCI fixups.
*
* Author: Yoichi Yuasa
* yyuasa@mvista.com or sou
www.eeworm.com/read/145991/5741845
c getargs.c
/*--------------------------------------------------------------------*/
/* g e t a r g s . c */
/*
www.eeworm.com/read/144216/5752491
t strict.t
#!./perl
BEGIN {
chdir 't' if -d 't';
@INC = '../lib';
$ENV{PERL5LIB} = '../lib';
}
$| = 1;
my $Is_VMS = $^O eq 'VMS';
my $Is_MSWin32 = $^O eq 'MSWin32';
my $tmpfile = "tmp0000";
my $i
www.eeworm.com/read/143155/5758599
c testpower.c
#include "usbdriver.h"
NTSTATUS TestPowerIrp(IN PDEVICE_OBJECT fdo,IN PIRP Irp)
{
NTSTATUS ntStatus;
PIO_STACK_LOCATION IrpStack, NextStack;
PDEVICE_EXTENSION pdx;
pdx = fdo->Devic
www.eeworm.com/read/143155/5758642
c testpower.c
#include "usbdriver.h"
NTSTATUS TestPowerIrp(IN PDEVICE_OBJECT fdo,IN PIRP Irp)
{
NTSTATUS ntStatus;
PIO_STACK_LOCATION IrpStack, NextStack;
PDEVICE_EXTENSION pdx;
pdx = fdo->Devic
www.eeworm.com/read/140271/5793179
java app5_10.java
// app5_10,switch语句
public class app5_10
{
public static void main(String args[])
{
int a=100,b=7;
char oper='/';
switch (oper)
{
www.eeworm.com/read/139903/5795592
cpp menu2.cpp
//: C03:Menu2.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
// A menu using a switch statement
#
www.eeworm.com/read/137483/5824057
cpp dlgfunc.cpp
#include "stdafx.h"
#include "resource.h"
void InsertLogMsg(LPTSTR lpszMsg);
extern HINSTANCE g_hInst;
extern HWND g_hMainWnd;
extern SOCKET g_sock;
void SendPacket(char *lpszPacke