代码搜索:void
找到约 10,000 项符合「void」的源代码
代码结果 10,000
www.eeworm.com/read/171044/5399630
txt 1.txt
void 1 -1
main 2 -1
( 5 -1
) 5 -1
{ 5 -1
int 1 -1
a 2 -1
; 5 -1
int 1 -1
b 2 -1
++ 4 -1
; 5 -1
} 5 -1
www.eeworm.com/read/162614/5517922
c expr1.c
struct A {
A (int, int);
void f ();
};
void f (int a) {
A (a, a).f ();
}
www.eeworm.com/read/162614/5528322
c pr13066-1.c
void *g, *c;
int a, b;
int f()
{
if ((0 == a) != (b || g == c))
return 1;
return 0;
}
www.eeworm.com/read/162614/5528529
c 921021-1.c
void g();
f()
{
int x=1;
while(x)
{
x=h();
if(x)
g();
}
}