代码搜索:bug
找到约 10,000 项符合「bug」的源代码
代码结果 10,000
www.eeworm.com/read/240162/4588921
c bug11.c
#define DD 2410065408
unsigned
foo (d)
double d;
{
return d;
}
#if foobar
main ()
{
#if bar
unsigned u = DD;
double d = (double) u;
#else
double d = (double) DD;
#endif
printf ("%u =
www.eeworm.com/read/240162/4588942
c bug6.c
main()
{
unsigned long L;
double D;
D = L = -3;
printf("L=%lu, D=%g\n", L, D);
return 0;
}
www.eeworm.com/read/240162/4588956
c bug5.c
enum bar
{
one,
two
};
enum bar foo;
void bar()
{
switch (foo)
{
case one:
case two:
printf ("one to two\n");
break;
}
}
www.eeworm.com/read/237048/4634843
java bug826174.java
package org.jnode.test.bugs;
public class bug826174
{
public static void main (String args[])
{
System.out.println(12L);
System.out.println(Long.parseLong("12"));
}
}
www.eeworm.com/read/237048/4634844
java bug824457.java
package org.jnode.test.bugs;
public class bug824457
{
public static void main (String args[])
{
String s = "test";
System.out.println(s.intern() == "test");
System.out.println(s
www.eeworm.com/read/237048/4634845
java bug778001.java
package org.jnode.test.bugs;
import java.util.Date;
public class bug778001
{
public static void main (String args[])
{
Date d = new Date();
System.out.println(d);
}
}
www.eeworm.com/read/233448/4682758
c bug24.c
struct ack {
char a, b, c;
};
main()
{
struct ack bad;
foo(bad);
}
foo(c)
struct ack c;
{
}
www.eeworm.com/read/233448/4682768
c bug3.c
BUG2 (p) char *p;
{
int a = 0;
if (*p == a)
return 0;
else
return 1;
}