代码搜索:bible 有哪些应用?
找到约 10,000 项符合「bible 有哪些应用?」的源代码
代码结果 10,000
www.eeworm.com/read/103315/6218232
java departmentlocal.java
package bible.ejb.entity.cmp;
import javax.ejb.*;
public interface DepartmentLocal extends EJBLocalObject
{
}
www.eeworm.com/read/250986/12371256
txt vc中对数据库访问的方式很多,什么最方便实用.txt
作者:robbinwoo
email: robbinwoo@163.net
日期:8/23/2001 4:53:02 PM
好象有ODBC,DAO,mfc数据库类,另外据说还有ado,不过我的一本Bible上没讲。
www.eeworm.com/read/148696/12440308
c printfok.c
#include
void main(void)
{
int result;
result = printf("Jamsa\'s C/C++ Programmer\'s Bible!\n");
if (result == EOF)
fprintf(stderr, "Error within printf\n");
}
www.eeworm.com/read/148696/12440368
c str_out.c
#include
void main(void)
{
char title[255] = "Jamsa\'s C/C++ Programmer\'s Bible";
printf("The name of this book is %s\n", title);
}
www.eeworm.com/read/148696/12440732
c tempnam.c
#include
void main(void)
{
char buffer[64];
int counter;
printf("Temporary filename %s\n", tempnam(buffer, "Bible"));
}
www.eeworm.com/read/148696/12441872
c strarray.c
#include
int strlen(char str[])
{
int i = 0;
while (str[i] != NULL)
i++;
return(i);
}
void main(void)
{
printf("Length of ABC is %d\n", strlen("ABC"));
www.eeworm.com/read/148696/12443021
c strcase.c
#include
#include
void main(void)
{
printf(strlwr("Jamsa\'s C/C++ Programmer\'s Bible!\n"));
printf(strupr("Jamsa\'s C/C++ Programmer\'s Bible!\n"));
}