代码搜索:PROGRAMMER

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

代码结果 6,766
www.eeworm.com/read/161438/5553821

cpp simple.cpp

#include void main(void) { cout
www.eeworm.com/read/161438/5554078

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/161438/5554142

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/161438/5554150

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/161438/5554162

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/161438/5554163

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/161438/5554168

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/161438/5554180

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
www.eeworm.com/read/157882/5601991

q15 twiddles.q15

; ;FFT Twiddle factors for a complex fft radix 2 with 1024 points ; ;Programmer: Manfred Christ, Program version: 0.99, Program date: 23.08.90 ; .if N>8 ; STAGE 4 .word 030fch ;
www.eeworm.com/read/155067/5630144

aspx debugging.aspx

function Page_Load(sender:Object, e:EventArgs) { var p : programmer = new progra