代码搜索:PROGRAMMER
找到约 6,766 项符合「PROGRAMMER」的源代码
代码结果 6,766
www.eeworm.com/read/148696/12442792
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/148696/12443004
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/148696/12443123
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/130553/14186969
lst resource.lst
The following messages are a list of resources that I've put together
from recommendations in this echo. These include books, magazines and
compiler vendors.
The format for book entries is as fo
www.eeworm.com/read/128628/14285768
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/128628/14287009
cpp fill_str.cpp
#include
#include
void main(void)
{
char string[256];
ostrstream str(string, 256); // Bind the string
str
www.eeworm.com/read/128628/14287048
cpp dyn_out.cpp
#include
#include
void main(void)
{
char * p;
ostrstream outs;
outs
www.eeworm.com/read/128628/14287650
cpp cout_put.cpp
#include
void main(void)
{
char *title = "Jamsa's C/C++ Programmer's Bible";
while (*title)
cout.put(*title++);
}