代码搜索:PROGRAMMER
找到约 6,766 项符合「PROGRAMMER」的源代码
代码结果 6,766
www.eeworm.com/read/148696/12443075
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/148696/12443085
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/148696/12443119
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/148649/12446694
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/132033/14113324
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/130028/14211742
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/129726/14231695
c setuserc.c
#include
#include
#include
#include
void main()
{
int gd=0,gm;
initgraph(&gd,&gm,"");
settextstyle(1,0,0);
setusercharsize(3,2,10,1);
outtextxy(10
www.eeworm.com/read/129197/14258225
java testtablemodel1.java
/*
* TestTableModel1.java
*
* Created on September 3, 2002, 11:34 AM
*/
package ch17;
/**
*
* @author Stephen Potts
*/
import java.util.Calendar;
import java.util.GregorianCalendar;
import
www.eeworm.com/read/129188/14259010
c init.c
/* $$$$$$$$$$$$$$$$$$ Copyrigth (c) $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
File name: Init.c
Version: 1.01
www.eeworm.com/read/128628/14285864
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");
}