代码搜索:Programs

找到约 10,000 项符合「Programs」的源代码

代码结果 10,000
www.eeworm.com/read/188512/8532235

cpp ex04_21.cpp

// Exercise 4.21: ex04_21.cpp // What does this program print? #include using std::cout; using std::endl; int main() { int count = 1; // initialize count while ( count
www.eeworm.com/read/188512/8532300

cpp fig03_13.cpp

// Fig. 3.13: fig03_13.cpp // GradeBook class demonstration after separating // its interface from its implementation. #include using std::cout; using std::endl; #include "GradeBo
www.eeworm.com/read/188512/8532377

cpp fig22_39.cpp

// Fig. 22.39: fig22_39.cpp // Using memchr. #include using std::cout; using std::endl; #include // memchr prototype using std::memchr; int main() { char s[] = "Th
www.eeworm.com/read/188512/8532407

cpp fig22_23.cpp

// Fig. 22.23: fig22_23.cpp // Using atoi. #include using std::cout; using std::endl; #include // atoi prototype using std::atoi; int main() { int i = atoi( "2593"
www.eeworm.com/read/188512/8532426

cpp fig22_37.cpp

// Fig. 22.37: fig22_37.cpp // Using memmove. #include using std::cout; using std::endl; #include // memmove prototype using std::memmove; int main() { char x[] =
www.eeworm.com/read/188512/8532437

cpp fig22_04.cpp

// Fig. 22.4: fig22_04.cpp // Card shuffling and dealing program. #include "DeckOfCards.h" // DeckOfCards class definition int main() { DeckOfCards deckOfCards; // create DeckOfCards object
www.eeworm.com/read/188512/8532446

cpp fig22_24.cpp

// Fig. 22.24: fig22_24.cpp // Using atol. #include using std::cout; using std::endl; #include // atol prototype using std::atol; int main() { long x = atol( "1000
www.eeworm.com/read/188512/8532461

cpp fig16_05.cpp

// Fig. 16.5: Fig16_05.cpp // Demonstrating pre-standard new returning 0 when memory // is not allocated. #include using std::cerr; using std::cout; int main() { double *ptr[
www.eeworm.com/read/188512/8532673

html test.html

www.eeworm.com/read/188512/8532816

cpp fig10_06.cpp

// Fig. 10.6: fig10_06.cpp // Program to test class Increment. #include using std::cout; #include "Increment.h" // include definition of class Increment int main() { Increment