代码搜索:else
找到约 10,000 项符合「else」的源代码
代码结果 10,000
www.eeworm.com/read/117181/6110565
c baz.c
static int bazx = 'b' + 'a' + 'z';
int baz (int x)
{
if (x)
return bazx;
else
return 0;
}
www.eeworm.com/read/117181/6110585
c grbx.c
static int grbxx = 'g' + 'r' + 'b' + 'x';
int grbx (int x)
{
if (x)
return grbxx;
else
return 0;
}
www.eeworm.com/read/117181/6110646
c bar.c
static int barx = 'b' + 'a' + 'r';
int bar (int x)
{
if (x)
return barx;
else
return 0;
}
www.eeworm.com/read/117181/6110705
c foo.c
static int foox = 'f' + 'o' + 'o';
int foo (int x)
{
if (x)
return foox;
else
return 0;
}
www.eeworm.com/read/112192/6147908
c getopt.c
/* Getopt for GNU.
NOTE: getopt is now part of the C library, so if you don't know what
"Keep this file name-space clean" means, talk to drepper@gnu.org
before changing it!
Copyright
www.eeworm.com/read/110972/6162063
c getopt.c
/* Getopt for GNU.
NOTE: getopt is now part of the C library, so if you don't know what
"Keep this file name-space clean" means, talk to drepper@gnu.org
before changing it!
Copyright
www.eeworm.com/read/101082/6241689
c pow_hh.c
#ifndef lint
static char *sccsid = " @(#)pow_hh.c 1.2 (ULTRIX) 1/16/86";
#endif lint
/************************************************************************
* *
* Copyright (c) 1986 by
www.eeworm.com/read/101082/6241704
c pow_ii.c
#ifndef lint
static char *sccsid = " @(#)pow_ii.c 1.2 (ULTRIX) 1/16/86";
#endif lint
/************************************************************************
* *
* Copyright (c) 1986 by
www.eeworm.com/read/100133/6273612
c input.c
int i;
int *i;
int f(char c, char *d)
{
int f;
c = '\033'+'\47'+'\''+'\\';
d = " \" '\\' foo";
i = c+3*f;
if ( i ) {
f = c;
}
else {
f = 1;
}
}