代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/162614/5527518
c 921013-1.c
f(d,x,y,n)
int*d;
float*x,*y;
int n;
{
while(n--){*d++=*x++==*y++;}
}
main()
{
int r[4];
float a[]={5,1,3,5};
float b[]={2,4,3,0};
int i;
f(r,a,b,4);
for(i=0;i
www.eeworm.com/read/162614/5527712
c loop-1.c
foo (a)
{
while ((a -= 1) != -1)
bar (270000);
putchar ('\n');
}
main ()
{
foo (5);
}
www.eeworm.com/read/162614/5528123
c 930325-1.c
typedef unsigned uint;
inline
g (uint *s, uint *d, uint c)
{
while (c != 0)
{
*--d = *--s;
c--;
}
}
f (uint *p1, uint c, uint *p2)
{
while (c > 0 && *p1 == 0)
{
p1+
www.eeworm.com/read/162614/5528371
c pr23233-1.c
void foo (volatile long long *x)
{
while (*x)
{
*x = 0;
*((volatile char *) 0) = 0;
}
}
www.eeworm.com/read/156146/5612277
properties enerror.properties
################################################################
#
# 错误信息一览表
#
#
################################################################
##############################################
www.eeworm.com/read/193129/8252284
txt test.txt
func my
{
int a;
int b;
b=2;
a=3;
while a>3
{
a=(a+1)*a;
if a>b|false else
a=b+a;
}
}
www.eeworm.com/read/293597/8283628
c break_test.c
void main()
{
int i;
while( 1 ) {
if( i ) continue;
break;
}
}