代码搜索:PROGRAMMER
找到约 6,766 项符合「PROGRAMMER」的源代码
代码结果 6,766
www.eeworm.com/read/163044/5511828
wcmake
###########################################################################
#
# MAKE-MY-DAY file for DEMO
# for Watcom C Compiler & Rational Systems DOS/4GW
#
# Programmer : Tan Khir Hien
www.eeworm.com/read/163044/5511832
scmake
###########################################################################
#
# MAKE-MY-DAY file for DEMO
# for Symemtec C/C++ & Pharlap DOS Extender
#
# Programmer : Tan Khir Hien
# Cop
www.eeworm.com/read/162868/5512828
wcmake
###########################################################################
#
# MAKE-MY-DAY file for DEMO
# for Watcom C Compiler & Rational Systems DOS/4GW
#
# Programmer : Tan Khir Hien
www.eeworm.com/read/162868/5512832
scmake
###########################################################################
#
# MAKE-MY-DAY file for DEMO
# for Symemtec C/C++ & Pharlap DOS Extender
#
# Programmer : Tan Khir Hien
# Cop
www.eeworm.com/read/161438/5553116
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/161438/5553595
cpp fill_str.cpp
#include
#include
void main(void)
{
char string[256];
ostrstream str(string, 256); // Bind the string
str
www.eeworm.com/read/161438/5553619
cpp dyn_out.cpp
#include
#include
void main(void)
{
char * p;
ostrstream outs;
outs
www.eeworm.com/read/161438/5553824
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/161438/5554072
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,