代码搜索:PROGRAMMER
找到约 6,766 项符合「PROGRAMMER」的源代码
代码结果 6,766
www.eeworm.com/read/350637/10725298
c fprintf.c
#include
void main(void)
{
FILE *fp;
int pages = 800;
float price = 49.95;
if (fp = fopen("FPRINTF.DAT", "w"))
{
fprintf(fp, "Book Title: Jamsa\'s C &
www.eeworm.com/read/350637/10725789
c mystrcpy.c
#include
char *strcpy(char *destination, const char *source)
{
char *start = destination;
while (*destination++ = *source++)
;
return(start);
}
void main(voi
www.eeworm.com/read/350637/10725814
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/350637/10726004
c putenv.c
#include
#include
void main(void)
{
if (putenv("BOOK=Jamsa\'s C & C++ Programmer\'s Bible"))
printf("Error writing to environment\n");
else
{
int
www.eeworm.com/read/350637/10726269
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"));
}
www.eeworm.com/read/350637/10726307
c strchr.c
#include
#include
void main(void)
{
char title[64] = "Jamsa\'s C/C++ Programmer\'s Bible!";
char *ptr;
ptr = strchr(title, 'C');
if (*ptr)
printf("
www.eeworm.com/read/350637/10726364
c strcpy.c
#include
#include
void main(void)
{
char title[] = "Jamsa\'s C/C++ Programmer\'s Bible";
char book[128];
strcpy(book, title);
printf("Book name %s\n", book
www.eeworm.com/read/350637/10726368
c strxfrm.c
#include
#include
void main(void)
{
char buffer[64] = "Jamsa\'s C/C++ Programmer\'s Bible";
char target[64];
int length;
length = strxfrm(target, buffer,
www.eeworm.com/read/350637/10726395
c strrchr.c
#include
#include
void main(void)
{
char title[64] = "Jamsa\'s C/C++ Programmer\'s Bible!";
char *ptr;
if (ptr = strrchr(title, 'C'))
printf("Rightmost o
www.eeworm.com/read/350637/10726451
c strdup.c
#include
#include
void main(void)
{
char *title;
if ((title = strdup("Jamsa\'s C/C++ Programmer\'s Bible")))
printf("Title: %s\n", title);
else