代码搜索:PROGRAMMER

找到约 6,766 项符合「PROGRAMMER」的源代码

代码结果 6,766
www.eeworm.com/read/128628/14288259

c find_len.c

#include int string_length(char *); void main(void) { char *title= "Jamsa\'s C/C++ Programmer\'s Bible"; char *section = "Tools"; printf("Length of %s is %d\n", title,
www.eeworm.com/read/128628/14288444

c strlen.c

#include #include void main(void) { char book_title[] = "Jamsa\'s C/C++ Programmer\'s Bible"; printf("%s contains %d characters\n", book_title, strlen(book_title))
www.eeworm.com/read/128628/14288587

c sho_mac.c

#define LINE 128 #define TITLE "Jamsa\'s C/C++ Programmer\'s Bible" #define SECTION "Macros" void main(void) { char book[LINE]; char library_name[LINE]; printf("This book's title is %s\n
www.eeworm.com/read/229457/14337819

bak fll.c.bak

/**************************************************************************** Filename:fll.c programmer:zhang chen Description:FLL+锁频环模块。用于4xx系列。 ACLK:32.768kHz 版本变更: 2005-4 V1.0 ********
www.eeworm.com/read/229457/14337875

bak fll.c.bak

/**************************************************************************** Filename:fll.c programmer:zhang chen Description:FLL+锁频环模块。用于4xx系列。 ACLK :32.768kHz 版本变更: 2005-4 V1.0 *******
www.eeworm.com/read/227070/14442165

c usbasp.c

#include "ac_cfg.h" #include #include #include #include #include #include #include "avr.h" #include "pgm.h" #include "usb
www.eeworm.com/read/222881/14669222

txt readme.txt

最酷的Flash Programmer! 配合wiggler电路就可以在线烧写ARM,MIPS,POWERPC,68K,...等等在板的MCU.吐血推荐! 使用方法: 1、运行Flsh_pgm.exe 先安装原版; 2、拷贝FlashPgm.exe 到安装后的目录下覆盖原版文件; 3、运行FlashPgm.exe,提示输入注册码时随便输入一些数字。 ALL DONE!
www.eeworm.com/read/119982/14814693

c str_ptr.c

#include void show_string(char *string) { while (*string) putchar(*string++); } void main(void) { show_string("Jamsa\'s C/C++ Programmer\'s Bible"); }
www.eeworm.com/read/119982/14815214

cpp fill_str.cpp

#include #include void main(void) { char string[256]; ostrstream str(string, 256); // Bind the string str