代码搜索:bug

找到约 10,000 项符合「bug」的源代码

代码结果 10,000
www.eeworm.com/read/470720/1450936

c bug4.c

int foo() { char c; return (c ^ 30 ) > (c ^ 40 ); /* these also get the signal : return (c ^ 30 ) == (c ^ 40 ); return ((int)c ^ 30 ) > (c ^ 40 ); also fails if c is "extern char" th
www.eeworm.com/read/470720/1450942

c bug2.c

BUG2 (p) int *p; { int a = 0; if (*p == a) return 0; else return 1; }
www.eeworm.com/read/470720/1450946

c bug12.c

long long main () { return 1.1e10; }
www.eeworm.com/read/470720/1450963

c bug17.c

double d; main() { int i; i = (int) d; }
www.eeworm.com/read/470720/1450965

c bug21.c

typedef struct { int knock_on_wood; /* leave it out and it works. */ int f1; } FOO; typedef struct { FOO *b1; } BAR; Nase () { int i, j; FOO *foop; BAR *barp; for (i = 0; i < 2; i++) { fo
www.eeworm.com/read/470720/1450997

c bug13.c

struct tree_common { int uid; unsigned int code : 8; unsigned int code2 : 8; unsigned external_attr : 1; unsigned public_attr : 1; }; static int duplicate_decls (x) register struct tr
www.eeworm.com/read/470720/1451021

c bug18.c

main() { if ((signed int) 1 < (signed int) -2147483648) printf("true\n"); }
www.eeworm.com/read/470720/1451037

c bug1.c

struct _XtTextSource { /* ... */ void (* SetSelection)(); /* ... */ }; typedef struct _XtTextSource *XtTextSource; typedef struct _TextPart { XtTextSource source; /* ... */ } TextPa
www.eeworm.com/read/470720/1451063

c bug22.c

void Rotate (float angle) { float mag = (angle < 0) ? -angle : angle; }
www.eeworm.com/read/470720/1451084

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 =