代码搜索:PROGRAMMER
找到约 6,766 项符合「PROGRAMMER」的源代码
代码结果 6,766
www.eeworm.com/read/206867/15286665
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/206867/15287187
cpp fill_str.cpp
#include
#include
void main(void)
{
char string[256];
ostrstream str(string, 256); // Bind the string
str
www.eeworm.com/read/206867/15287211
cpp dyn_out.cpp
#include
#include
void main(void)
{
char * p;
ostrstream outs;
outs
www.eeworm.com/read/206867/15287429
cpp cout_put.cpp
#include
void main(void)
{
char *title = "Jamsa's C/C++ Programmer's Bible";
while (*title)
cout.put(*title++);
}
www.eeworm.com/read/206867/15287709
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/206867/15287772
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/206867/15287819
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/169979/5408120
wcmake
###########################################################################
#
# MAKE-MY-DAY file for DEMO
# for Watcom C Compiler & Rational Systems DOS/4GW
#
# Programmer : Tan Khir Hien
www.eeworm.com/read/169979/5408124
scmake
###########################################################################
#
# MAKE-MY-DAY file for DEMO
# for Symemtec C/C++ & Pharlap DOS Extender
#
# Programmer : Tan Khir Hien
# Cop