代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/164348/5492372
c gcd.c
/* ***** BEGIN LICENSE BLOCK *****
* Version: RCSL 1.0/RPSL 1.0
*
* Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved.
*
* The contents of this file, and the
www.eeworm.com/read/162614/5523774
ada c55c02a.ada
-- C55C02A.ADA
-- Grant of Unlimited Rights
--
-- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687,
-- F08630-91-C-0015, and DCA100-97-D-0025,
www.eeworm.com/read/162614/5526589
c 960218-1.c
int glob;
g (x)
{
glob = x;
return 0;
}
f (x)
{
int a = ~x;
while (a)
a = g (a);
}
main ()
{
f (3);
if (glob != -4)
abort ();
exit (0);
}
www.eeworm.com/read/162614/5527164
c 20000731-2.c
int
main()
{
int i = 1;
int j = 0;
while (i != 1024 || j
www.eeworm.com/read/162614/5527870
c xlop.c
foo (a)
{
int b;
do
{
b = bar ();
a = b - 10;
}
while (a > 10);
return a;
}
www.eeworm.com/read/162614/5528214
c 20011010-1.c
extern int used (void);
int foo ()
{
int i;
for (; used (); ({while (1) if (used ()) return 0;}))
i++;
return i;
}
www.eeworm.com/read/162614/5528557
c 990801-2.c
void f()
{
extern char* p;
int ch;
while (!(ch = 0)) {
if ((ch == 0) || (ch == 2)) {
break;
}
*p = 0;
}
}
www.eeworm.com/read/159853/5580326
c strcat.c
#include
char *strcat(char *s1, CONST char *s2)
{
char *s = s1;
while (*s1)
s1++;
while (*s2)
*s1++ = *s2++;
*s1 = *s2;
return s;
}