代码搜索:bug
找到约 10,000 项符合「bug」的源代码
代码结果 10,000
www.eeworm.com/read/247171/4486053
vb bug-81055.vb
Imports System
Module Test
Public Sub Main _
()
Console.WriteLine("Hello, World")
End Sub
End Module
www.eeworm.com/read/247171/4486055
vb bug-80967.vb
Module Main
Function Main() As Integer
Return 0
End Function
End Module
www.eeworm.com/read/247171/4486056
response bug-80752.response
/target:library
-r:System.dll,System.Windows.Forms.dll,System.Drawing.dll,System.Drawing.Design.dll,System.Xml.dll,System.Design.dll,System.Data.dll
-imports:System,System.Drawing,Microsoft.VisualBa
www.eeworm.com/read/240162/4588754
c bug24.c
struct ack {
char a, b, c;
};
main()
{
struct ack bad;
foo(bad);
}
foo(c)
struct ack c;
{
}
www.eeworm.com/read/240162/4588764
c bug3.c
BUG2 (p) char *p;
{
int a = 0;
if (*p == a)
return 0;
else
return 1;
}