代码搜索:PROGRAMMER
找到约 6,766 项符合「PROGRAMMER」的源代码
代码结果 6,766
www.eeworm.com/read/141545/13001184
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/141545/13002333
cpp fill_str.cpp
#include
#include
void main(void)
{
char string[256];
ostrstream str(string, 256); // Bind the string
str
www.eeworm.com/read/141545/13002405
cpp dyn_out.cpp
#include
#include
void main(void)
{
char * p;
ostrstream outs;
outs
www.eeworm.com/read/141545/13002992
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/141545/13003762
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/141545/13003906
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/141545/13003975
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/136879/13356246
cpp fig03_03.cpp
// Fig. 3.3: fig03_03.cpp
// Creating and using a programmer-defined function
#include
int square( int ); // function prototype
int main()
{
for ( int x = 1; x