代码搜索:PROGRAMMER
找到约 6,766 项符合「PROGRAMMER」的源代码
代码结果 6,766
www.eeworm.com/read/171829/9735066
cpp dyn_out.cpp
#include
#include
void main(void)
{
char * p;
ostrstream outs;
outs
www.eeworm.com/read/171829/9735538
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/171829/9735964
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/171829/9736087
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/171829/9736156
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/367407/9751842
cs substring.cs
using System;
class clsSubString
{
static void Main()
{
string Title = "Jamsa's Programmer's Bible";
Title = Title.Insert(8, "C/C++/C# ");
Console.WriteLine(Title);
Title = T
www.eeworm.com/read/367407/9751871
cs composedelegate.cs
using System;
class clsComposeDelegate
{
public delegate void ShowMessage(string Message);
public static ShowMessage DelegateHolder = null;
public static void Main ()
{
DelegateHolder
www.eeworm.com/read/367407/9751890
cs book.cs
using System;
class clsBook
{
static void Main()
{
Console.WriteLine("Jamsa's C/C++/C# Programmer's Bible");
}
}
www.eeworm.com/read/367342/9755836
c find_len.c
#include
int string_length(char *);
void main(void)
{
char *title= "Jamsa\'s C/C++/C# Programmer\'s Bible";
char *section = "Tools";
printf("Length of %s is %d\n", titl